
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #2e3136;
  --text-light: #37393d;
  --background: #ffffff;
  --surface: #f8fafc;
  --border: #e5e7eb;
  --error: #ef4444;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #1b1a1a;
}

.contact-info i {
  color: var(--secondary-color);
  width: 16px;
}

.contact-info a {
  color: #0c0c0c;
  text-decoration: none;
}

.contact-info a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

/* Privacy Policy Specific Styles */
.privacy-policy-content {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.policy-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar Styles */
.policy-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.policy-nav {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.policy-nav h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.policy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-nav-list li {
  margin-bottom: 0.5rem;
}

.policy-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.policy-nav-link:hover,
.policy-nav-link.active {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 500;
}

.policy-summary {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.summary-card {
  text-align: center;
  margin-bottom: 2rem;
}

.summary-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.summary-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.summary-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.summary-highlights h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.summary-highlights ul {
  list-style: none;
  padding: 0;
}

.summary-highlights li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.summary-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Main Content Styles */
.policy-main {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.policy-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--accent-color);
}

.last-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.policy-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 400;
}

.policy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.policy-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-number {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.subsection {
  margin-bottom: 2rem;
}

.subsection h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Info Boxes */
.info-box,
.warning-box {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-box {
  background: #e0f2fe;
  border-left: 4px solid #0288d1;
}

.warning-box {
  background: #fff3e0;
  border-left: 4px solid #f57c00;
}

.info-box i,
.warning-box i {
  color: #0288d1;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.warning-box i {
  color: #f57c00;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.right-card:hover {
  transform: translateY(-2px);
}

.right-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.right-icon i {
  color: white;
  font-size: 1.2rem;
}

.right-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Cookie Types */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
}

.cookie-type h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-type i {
  color: var(--primary-color);
}

/* SMS Info Box */
.sms-info-box {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.sms-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sms-icon i {
  color: white;
  font-size: 1.5rem;
}

.sms-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Messaging Details */
.messaging-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.messaging-item {
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
}

.messaging-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.messaging-item i {
  color: var(--primary-color);
}

/* Contact Details Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail-card {
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Privacy Contact CTA */
.privacy-contact-cta {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.privacy-contact-cta h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.privacy-contact-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Policy Footer */
.policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-color);
}

.acknowledgment-box {
  background: var(--success-color);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.acknowledgment-box i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.policy-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .policy-container {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }

  .policy-main {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .policy-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .policy-sidebar {
    position: static;
    order: 2;
  }

  .policy-main {
    padding: 1.5rem;
    order: 1;
  }

  .policy-nav {
    padding: 1.5rem;
  }

  .policy-summary {
    padding: 1.5rem;
  }

  .section-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .rights-grid,
  .cookie-types,
  .messaging-details,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .sms-info-box {
    flex-direction: column;
    text-align: center;
  }

  .policy-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .privacy-policy-content {
    padding: 2rem 0;
  }

  .policy-main {
    padding: 1rem;
  }

  .policy-nav,
  .policy-summary {
    padding: 1rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-detail-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Print styles */
@media print {
  .policy-sidebar,
  .header,
  .footer {
    display: none;
  }

  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-main {
    box-shadow: none;
    padding: 0;
  }

  .policy-section {
    break-inside: avoid;
  }
}
