@import url("main.css");
/* Hero Section */
.hero-section {
  position: relative;
  height: 50vh;
  min-height: 300px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: fadeInDown 1s ease-out forwards;
}

.hero-content h1 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
}

.breadcrumb i {
  font-size: 0.7rem;
}

/* Main Container */
.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  opacity: 0;
  animation: slideInLeft 1s ease-out 1s forwards;
}

.sidebar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-title i {
  font-size: 0.8rem;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--gray-medium);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

/* Content Area */
.content-area {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  opacity: 0;
  animation: slideInRight 1s ease-out 1.2s forwards;
}

.content-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 1.5rem;
}

.content-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.content-header p {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.last-updated {
  font-size: 0.7rem;
  color: var(--gray-medium);
  margin-top: 0.5rem;
}

/* Content Sections */
.content-section {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.content-section:nth-child(2) {
  animation-delay: 1.4s;
}
.content-section:nth-child(3) {
  animation-delay: 1.6s;
}
.content-section:nth-child(4) {
  animation-delay: 1.8s;
}
.content-section:nth-child(5) {
  animation-delay: 2s;
}
.content-section:nth-child(6) {
  animation-delay: 2.2s;
}

.section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  color: var(--primary);
  font-size: 0.8rem;
}

.section-content {
  font-size: 0.8rem;
  color: var(--gray-medium);
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content ul {
  margin: 1rem 0 1rem 1.5rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.section-content strong {
  color: var(--black);
  font-weight: 600;
}

/* Highlight Box */
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

/* Contact Info Box */
.contact-info-box {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.contact-info-box h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.contact-info-box p {
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .sidebar {
    position: static;
    order: 2;
    padding: 1.5rem;
  }

  .content-area {
    padding: 2rem 1.5rem;
    order: 1;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .content-header h2 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 0.85rem;
  }

  .section-content {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 40vh;
    min-height: 250px;
  }

  .hero-content h1 {
    font-size: 1.1rem;
  }

  .privacy-container {
    padding: 1.5rem 0.75rem;
  }

  .content-area,
  .sidebar {
    padding: 1.5rem 1rem;
  }
}
