body {
    background: #f9fdfc;
    margin: 0;
    padding: 20px; /* Base padding for large screens */
}

/* New wrapper for sidebar + content */
.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    max-width: 1400px; /* Constrain overall width for huge screens */
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.privacy-notice {
    background: teal;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
}
.privacy-notice h1 {
    font-family: 'Montserrat', Arial Black, Impact, sans-serif;
    font-size: 2.5rem; /* Base desktop size */
    margin-bottom: 15px;
}
.privacy-notice p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.privacy-notice .last-updated {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ================================================= */
/* Sidebar (Table of Contents) */
/* ================================================= */
.toc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    height: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px; /* Keeps it sticky on desktop */
    z-index: 50; /* Ensure it stays above content if overlapping */
}

.toc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin: 18px 0;
    display: flex;
    align-items: center;
}

.toc li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    color: teal;
}

.toc a {
    font-family: 'Georgia', serif;
    text-decoration: none;
    color: #111827;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.toc a:hover {
    color: teal;
}

/* ================================================= */
/* Content Layout */
/* ================================================= */
.content {
    flex: 1;
    max-width: 800px; /* Constrains the max width of the main content column */
}

.card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-header h2 {
    font-size: 1.6rem;
    color: #111827;
    margin: 0;
    font-family: 'Georgia', serif;
}

/* Sub-headings inside card body */
.card-body h3 {
    font-size: 1.2rem;
    color: teal;
    margin: 20px 0 10px;
    font-family: 'Georgia', serif;
}


/* How we use your information Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Base desktop grid */
    gap: 20px;
    margin-top: 20px;
}

.info-box h4 {
    font-size: 1.05rem;
}

/* Data Security Grid */
.security-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin-top: 20px;
}
.security-box {
    flex: 1;
    min-width: 220px; /* Ensures boxes are decent size on desktop */
}

/* Privacy Rights List */
.right-content h3 {
    font-size: 16px;
}

.right-content p {
    font-size: 14px;
}


/* ================================================= */
/* Responsive Media Queries */
/* ================================================= */

/* Tablet Adjustments (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Main Layout: Keep sidebar/content, but reduce gap and padding */
    .main-layout {
        gap: 20px;
    }
    body {
        padding: 15px;
    }

    /* Sidebar: Reduce size but keep sticky */
    .toc {
        width: 200px;
        padding: 15px;
    }
    .toc a {
        font-size: 0.9rem;
    }

    /* Hero */
    .privacy-notice h1 {
        font-size: 2.2rem;
    }

    /* Content */
    .card-header h2 {
        font-size: 1.4rem;
    }
    .card-body h3 {
        font-size: 1.1rem;
    }
    .card-body p {
        font-size: 0.95rem;
    }
}


/* Mobile Adjustments (max-width: 768px) */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    /* Main Layout: Stack sidebar and content */
    .main-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    /* Sidebar: Critical Change - Remove sticky position and make it full width */
    .toc {
        position: static; /* Remove sticky */
        width: 100%; /* Full width */
        order: -1; /* Place it above the content (optional, but logical) */
    }
    .toc h3 {
        text-align: center;
        margin-bottom: 10px;
    }
    /* Optional: Make TOC links easier to tap by wrapping items */
    .toc li {
        margin: 10px 0;
        /* Optional: Display TOC in a horizontal row on mobile */
        /* display: inline-flex; */
    }

    /* Hero */
    .privacy-notice {
        padding: 40px 15px;
    }
    .privacy-notice h1 {
        font-size: 1.8rem;
    }
    .privacy-notice p {
        font-size: 1rem;
    }

    /* Info Grid: Collapse to single column */
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Data Security Grid: Min-width is now handled by flex-wrap */
    .security-box {
        min-width: 100%; /* Ensure boxes take full width when wrapped */
        /* flex property will handle remaining distribution */
    }

    /* Card Layout */
    .card {
        padding: 15px;
        margin-bottom: 20px;
    }
    .card-header svg {
        width: 30px;
        height: 30px;
        padding: 4px;
        margin-right: 8px;
    }
    .card-header h2 {
        font-size: 1.2rem;
    }
    .right-item {
        padding: 10px;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Privacy Rights: Shrink text slightly */
    .right-content h3 {
        font-size: 15px;
    }
    .right-content p {
        font-size: 13px;
    }
    
    /* Contact Details: Stack items for better clarity */
    .contact-details {
        gap: 10px;
    }
    .contact-item {
        flex-direction: column; /* Stack icon and text */
        align-items: flex-start;
        font-size: 14px;
        border-bottom: 1px dashed #eee;
        padding-bottom: 5px;
    }
    .contact-item svg {
        width: 25px;
        height: 25px;
    }
}body {
  background: #f9fdfc;
  margin: 0;
  padding: 20px;
}
/* new wrapper for sidebar + content */
.main-layout {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.privacy-notice {
    background: teal;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
}
.privacy-notice h1 {
    font-family: 'Montserrat', Arial Black, Impact, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.privacy-notice p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.privacy-notice .last-updated {
    font-size: 0.9rem;
    opacity: 0.9;
}
/* Sidebar */
.toc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  width: 230px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  position: sticky;
  top: 20px;
  height: fit-content;
  transition: all 0.3s ease-in-out;
}

.toc h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
  text-align: center;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  transition: transform 0.2s ease, background 0.2s ease;
  padding: 5px 6px;
  border-radius: 6px;
}

.toc li:hover {
  background: #f0fdfa;
  transform: translateX(2px);
}

.toc li svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: teal;
  flex-shrink: 0;
}

.toc a {
  font-family: 'Georgia', serif;
  text-decoration: none;
  color: #111827;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.toc a:hover {
  color: teal;
}
/* Content Layout */
.content {
  flex: 1;
  max-width: 800px;
}

/* Card Style */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Header Layout */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px; /* space between icon and text */
  margin-bottom: 15px;
}

/* Icon styling */
.card-header svg {
  width: 40px;
  height: 40px;
  stroke: teal;
  background: rgba(51, 185, 185, 0.1); /* soft teal background */
  border-radius: 50%;                 /* make it circular */
  padding: 6px;                       /* space around icon */
  margin-right: 12px;
  flex-shrink: 0;
}

/* Heading container */
.card-header div {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical align with icon */
}

.card-header h2 {
  font-size: 1.6rem;
  color: #111827;
  margin: 0;
  font-family: 'Georgia', serif;
}

.effective-date {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 4px;
}


/* Body */
.card-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 15px;
  font-family: 'Times New Roman', serif;
}
/* Sub-headings inside card body */
.card-body h3 {
  font-size: 1.2rem;
  color: teal;
  margin: 20px 0 10px;
  font-family: 'Georgia', serif;
}

/* Lists inside card body */
.card-body ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
  color: #374151;
  font-family: 'Times New Roman', serif;
}

.card-body ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
/*How we use your information*/
/* Grid layout for 2x2 */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 columns */
  gap: 20px;
  margin-top: 20px;
}

.info-box {
  background: #f0fdfa; /* soft teal tint */
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-box h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.info-box p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
  font-family: 'Times New Roman', serif;
}
/*Information Sharing*/
.sharing-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sharing-item {
  border-left : 3px solid teal;
  padding: 12px;
}
.sharing-item h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  font-family: 'Georgia', serif;
}
.sharing-item p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #374151;
  font-family: 'Times New Roman', serif;
}
/* Light box for cookies section */
.cookie-box {
  background: #f9fdfc;        /* very light teal tint */
  border: 1px solid #e5e7eb; /* light border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 12px;
}

/* Cookies list */
.cookie-list {
  list-style: disc;
  margin: 0 0 0 20px;
  padding: 0;
  color: #374151;
  
}

.cookie-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: 'Times New Roman', serif;
}

.cookie-list strong {
  color: teal;
  font-family: 'Georgia', serif;
  
}
/*Data Security*/
.security-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.security-box {
  flex: 1;
  min-width: 220px;
  background: #f0fdfa; /* soft teal tint */
  border: 1px solid #d1fae5; 
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.security-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccfbf1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 12px auto;
}

.security-icon svg {
  width: 26px;
  height: 26px;
  stroke: teal;
}

.security-box h3 {
  margin: 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f766e;
  font-family: 'Georgia', serif;
}

.security-box p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  font-family: 'Times New Roman', serif;
}
/* Privacy Rights */
.rights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.right-item {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.right-item:hover {
  background: #f3f4f6;
}

.right-number {
  background: #a7f3d0;
  color: #065f46;
  font-weight: 600;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.right-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.right-content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
/*Contact Us*/
.contact-us {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* Section Header Icon */
.section-header svg {
  stroke: #0F766E;
  width: 40px;
  height: 40px;
  background: #E6F7F5;   /* soft teal background */
  padding: 6px;
  border-radius: 50%;
}

.contact-us p {
  color: #555;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 15px;
}
.contact-item a {
  font-size: 15px;
  color: #374151;
  text-decoration: none;
}

/* Contact Item Icons */
.contact-item svg {
  stroke: #0F766E;
  width: 30px;
  height: 30px;
  background: #E6F7F5;   /* soft teal background */
  padding: 5px;
  border-radius: 50%;
}
/* ================================================= */
/* 🔹 Responsive Design (Universal) */
/* ================================================= */

/* 💻 Medium screens (Tablets & small laptops) */
@media (max-width: 1024px) {
  body {
    padding: 15px;
  }

  .main-layout {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* TOC: Shrinks slightly but stays sticky */
  .toc {
    width: 100%;
    position: relative;
    box-shadow: none;
    margin-bottom: 15px;
    padding: 12px 10px;
  }

  .toc h3 {
    text-align: left;
    font-size: 1rem;
  }

  .toc ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
  }

  .toc li {
    margin: 0;
    justify-content: flex-start;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 8px;
  }

  .toc li svg {
    width: 15px;
    height: 15px;
    margin-right: 6px;
  }

  .toc a {
    font-size: 0.88rem;
  }

  /* Info grids adapt to single column */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* Hero section scales down text */
  .privacy-notice {
    padding: 50px 20px;
  }

  .privacy-notice h1 {
    font-size: 2.2rem;
  }

  .privacy-notice p {
    font-size: 1rem;
  }

  .card-header h2 {
    font-size: 1.4rem;
  }

  .card-body h3 {
    font-size: 1.1rem;
  }
}

/* 📱 Tablets & Large Phones */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  /* Layout stacks: sidebar above content */
  .main-layout {
    flex-direction: column;
    gap: 25px;
  }

  /* TOC: becomes full-width and non-sticky */
  .toc ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .toc li {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    padding: 10px 6px;
  }

  .toc li svg {
    margin: 0 0 4px 0;
  }

  .toc a {
    font-size: 0.85rem;
  }

  /* Hero */
  .privacy-notice {
    padding: 40px 15px;
  }

  .privacy-notice h1 {
    font-size: 1.8rem;
  }

  .privacy-notice p {
    font-size: 0.95rem;
  }

  /* Cards & Grids */
  .card {
    padding: 15px;
    margin-bottom: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    flex-direction: column;
  }

  .security-box {
    min-width: 100%;
  }

  /* Privacy Rights cards stacked neatly */
  .rights-list {
    gap: 10px;
  }

  .right-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px;
  }

  .right-number {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .right-content h3 {
    font-size: 15px;
  }

  .right-content p {
    font-size: 13px;
  }

  /* Contact section */
  .contact-us {
    padding: 20px;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-item {
    font-size: 14px;
  }

  .contact-item svg {
    width: 26px;
    height: 26px;
  }
}

/* 📞 Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .privacy-notice h1 {
    font-size: 1.6rem;
  }

  .privacy-notice p {
    font-size: 0.9rem;
  }

  /* TOC: fully stacked single column */
  .toc ul {
    grid-template-columns: 1fr;
  }

  .toc li {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 7px 5px;
  }

  .toc li svg {
    margin-right: 8px;
  }

  .toc a {
    font-size: 0.88rem;
  }

  .toc h3 {
    text-align: center;
  }

  /* Rights section smaller spacing */
  .right-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-number {
    margin-bottom: 5px;
  }

  /* Contact cards vertical */
  .contact-details {
    gap: 10px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
}

/* 🖥️ Extra Large Displays */
@media (min-width: 1400px) {
  .main-layout {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .toc {
    width: 280px;
  }

  .content {
    max-width: 900px;
  }

  .card-header h2 {
    font-size: 1.8rem;
  }
}







