/* Privacy Page Specific Styles */

/* Hero Section */
.privacy-hero {
  background-color: #f8f9fa;
  padding-top: 30px !important;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.privacy-text-column {
  z-index: 2;
}

.text-head {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: #333;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em; /* Add this line */
}

.text-privacy-first {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.blue-text {
  color: #0066cc;
  font-weight: 700;
}

.privacy-hero-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6e6e6e;
    line-height: 1.6;
}

.privacy-image-column {
  position: absolute;
  right: -5%;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
}

.privacy-image-column img {
  width: auto !important;
  max-height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Privacy Content Sections */
.privacy-content-section {
  padding: 80px 0;
  background-color: #fff;
}

.privacy-section {
  margin-bottom: 60px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #092bf7;
  position: relative;
}

.privacy-section-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #ff9900;
}

.privacy-section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

/* Privacy Items */
.privacy-items {
  margin-top: 1.5rem;
}

.privacy-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-item:last-child {
  margin-bottom: 0;
}

.privacy-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.privacy-item-bullet {
  width: 12px;
  height: 12px;
  background-color: #092bf7;
  border-radius: 50%;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 8px;
}

.privacy-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.privacy-item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-left: 24px;
}

/* Contact Information */
.privacy-contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #092bf7;
}

.contact-details {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #555;
}

.contact-details strong {
  color: #333;
  min-width: 80px;
  display: inline-block;
}

.privacy-update-date {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .text-head {
    font-size: 3rem;
  }
  
  .text-privacy-first {
    font-size: 2.2rem;
  }
  
  .privacy-image-column {
    right: 2%;
  }
}

@media (max-width: 991px) {
  .privacy-hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .text-head {
    font-size: 2.5rem;
  }
  
  .text-privacy-first {
    font-size: 2rem;
  }
  
  .privacy-image-column {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 2rem;
    text-align: center;
  }
  
  .privacy-image-column img {
    max-height: 350px;
  }
  
  .privacy-hero-description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .privacy-hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
  .text-head {
    font-size: 2.2rem;
  }
  
  .text-privacy-first {
    font-size: 1.8rem;
  }
  
  .privacy-section-title {
    font-size: 1.7rem;
  }
  
  .privacy-content-section {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .text-head {
    font-size: 1.9rem;
  }
  
  .text-privacy-first {
    font-size: 1.6rem;
  }
  
  .privacy-hero-description {
    font-size: 1rem;
  }
  
  .privacy-section-title {
    font-size: 1.5rem;
  }
  
  .privacy-item-title {
    font-size: 1.2rem;
  }
  
  .privacy-contact-info {
    padding: 1.5rem;
  }
}

/* Animation for privacy items */
.privacy-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.privacy-item:nth-child(1) { animation-delay: 0.1s; }
.privacy-item:nth-child(2) { animation-delay: 0.2s; }
.privacy-item:nth-child(3) { animation-delay: 0.3s; }
.privacy-item:nth-child(4) { animation-delay: 0.4s; }
.privacy-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}