/* ==================== General Styling ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Deep, neutral background */
  color: #eee; /* Slightly brighter text for better contrast */
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* Increase heading sizes */
h1 {
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Improve paragraph readability */
p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

/* Add extra spacing for sections */
section {
  margin-bottom: 60px;
}

/* ==================== Header / Navigation ==================== */
header {
  background-color: rgba(34, 34, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo styling */
.logo h1 {
  font-size: 30px;
  color: #eee;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffa650; /* Hover with soft orange accent */
}

/* ========== CTA Button in Navigation ========== */
.cta-rounded-button {
  padding: 10px 25px;
  border: 2px solid #fff;
  background-color: #ff9658; /* Soft orange CTA background */
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
  font-size: 15px;
  cursor: pointer;
}

.cta-rounded-button:hover {
  background-color: #fff;
  color: #ff9658;
  border: 2px solid #ff9658;
}

/* Hide CTA button on mobile by default (if desired) */
.cta-rounded-button.signup-button {
  display: none;
}


.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #e0e0e0;
}

.apple-icon {
  width: 24px;
  height: auto;
}

/* ==================== Hamburger Menu for Mobile ==================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background-color: white;
  transition: 0.3s;
}

/* Hamburger icon animation when toggled */
.hamburger.toggle .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.toggle .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-active {
  transform: translateX(0%);
}

/* ==================== Hero Section ==================== */
#hero {
  margin-top: 50px;
  min-height: 100vh; /* Let the content define the height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 40px 0; /* More vertical padding for breathing room */
  background: linear-gradient(
    to bottom,
    rgba(16, 16, 16, ),0.95
    rgba(18, 18, 18, 0.95)
  );
}

.hero-content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-column {
  flex: 1;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Gradient text: calmer “wellness” palette (teal to blue) */
h1.gradient-text {
  background: linear-gradient(to right, #00b894, #0984e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 20px;
  color: #ddd;
  line-height: 1.8;
}

.cta-buttons {
  margin-top: 20px;
}

/* Primary CTA button in hero */
.cta-button {
  background-color: #ff9658; /* Soft orange */
  color: white;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #ffa650; 
  transform: scale(1.05);
}

/* Subtle pulse or fade animation for the CTA (optional) */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cta-button {
  animation: pulse 2.5s infinite;
}

.right-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-video {
  display: block;
  width: 100%;
  max-width: 300px; /* Adjust to taste, or remove entirely */
  height: auto;
  margin: 0 auto;
  background-color: transparent;
}

/* ========== On-scroll animation ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== Features Section ==================== */
#interactive-features {
  text-align: center;
  background: linear-gradient(to bottom, #1a1a1a, #121212);
  padding: 60px 20px;
  margin-top: 50px;
}

.features-layout {
  display: grid;
  gap: 60px; /* More vertical space between feature blocks */
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.feature-text {
  text-align: left;
  max-width: 500px;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.feature-text p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
}

.feature-image img {
display: block;
  width: 100%;
  max-width: 300px; /* Adjust to taste, or remove entirely */
  height: auto;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

  /* Mask image with a gradient for fading */
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 90%); 
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%); /* For Webkit-based browsers */
}

/* Style the video inside the container */
.feature-image video {
  display: block;
  width: 100%;
  max-width: 300px; /* Adjust to taste, or remove entirely */
  height: auto;
  margin: 0 auto;
  background-color: transparent;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

  /* Mask image with a gradient for fading */
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 90%); 
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%); /* For Webkit-based browsers */
}

.feature-image img.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Flip layout for alternating features */
.feature-item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* CTA in Features Section */
.feature-cta-container {
  margin-top: 40px;
}
.feature-cta-container .cta-button.large-cta {
  padding: 16px 40px;
  font-size: 20px;
}

/* ==================== Social Proof Section ==================== */
#social-proof {
  background-color: #141414;
  padding: 60px 20px;
  text-align: center;
  color: #eee;
}

#social-proof h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.live-detox-stat p {
  font-size: 22px;
  margin: 20px 0;
  color: #ff9658;
}

.testimonials {
  margin-top: 40px;
}

.testimonials h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.testimonial-item {
  max-width: 700px;
  margin: 20px auto;
  background: #1f1f1f;
  border-radius: 10px;
  padding: 20px;
}

.testimonial-item .quote {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-item .author {
  font-size: 16px;
  color: #bbb;
  text-align: right;
}

.calmer-experience-section {
  background-color: #141414; /* or match your site’s darker background */
  color: #eee;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px; /* Adds spacing before next section */
}

.calmer-experience-section .container {
  max-width: 800px; /* Constrain text width for readability */
  margin: 0 auto;
}

.calmer-experience-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.calmer-experience-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #ccc; /* Slightly lighter than #eee for contrast */
}

/* Style the bullet list */
.calmer-experience-section ul {
  list-style: none; /* Remove default bullet */
  padding: 0;
  margin: 0;
  text-align: left; /* Align bullets to the left for readability */
  max-width: 600px; /* Narrower than the container, if you want a nice text column */
  margin: 0 auto;   /* Center the list container */
}

.calmer-experience-section ul li {
  position: relative;
  padding-left: 35px; /* Space for custom bullet icon */
  margin-bottom: 15px;
  font-size: 18px;
  color: #ddd;
}

/* Add a custom check icon or any symbol you prefer */
.calmer-experience-section ul li::before {
  content: "✓"; 
  color: #ff9658;  /* Your accent color (soft orange) */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px); /* Adjust vertically for alignment */
}

/* ==================== Pricing Section ==================== */
#pricing {
  padding: 80px 20px;
  background-color: #121212;
  color: #ddd;
  text-align: center;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #ccc;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 30px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.plan-header h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.plan-header .price {
  font-size: 36px;
  font-weight: bold;
  color: #ff9658; /* Orange color for pricing */
}

.badge {
  background: #ffd95a;
  color: #121212;
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.billing-info {
  font-size: 14px;
  color: #aaa;
  margin: 10px 0;
}

/* CTA button for pricing */
.pricing-card .cta-button {
  background-color: #ff9658;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.pricing-card .cta-button:hover {
  background-color: #ffa650;
}

/* Hide CTA in free plan */
.basic-card .cta-button {
  display: none;
}

.divider {
  height: 1px;
  background: #444;
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.pricing-card ul li {
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  color: #ccc;
  padding-left: 25px;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c896; /* A teal check icon */
  font-size: 14px;
}

.premium-card {
  border: 2px solid #00c896;
}

.toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px; top: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s;
}
input:checked + .slider {
  background-color: #ff9658; /* Soft orange accent */
}
input:checked + .slider:before {
  transform: translateX(24px);
}

/* ==================== About Us Section ==================== */
#about {
  padding: 80px 20px;
  background-color: #141414;
  text-align: center;
  color: #ddd;
}

#about h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

#about p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* Contact Section Container */
#contact {
  padding: 80px 20px;
  background-color: #121212;
  text-align: center;
  color: #eee;
}

/* Headings & Intro Text */
#contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}
#contact p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
  display: inline-block;
  background-color: #1a1a1a; 
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: left;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-size: 16px;
  color: #ddd;
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background-color: #1e1e1e;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
}

.contact-form button {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #f2f2f2;
}

/* ==================== Section Divider ==================== */
.section-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #00c896, #3498db);
  margin: 60px auto;
  border-radius: 10px;
  opacity: 0.8;
  transition: opacity 0.5s ease-in-out;
}
.section-divider:hover {
  opacity: 1;
}

/* ==================== Footer ==================== */
footer {
    text-align: center;
    padding: 30px;
    background: #1c1c1c;
    color: #bbb;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between links */
    margin-top: 10px;
}

.footer-links a {
    color: #ffa650;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff9658;
    text-decoration: underline;
}

.footer-logo img {
  max-width: 80px;
  margin-bottom: 15px;
}

footer a {
  color: #ffa650;
  text-decoration: none;
  transition: color 0.3s;
}

/* ==================== Responsive (Mobile) Adjustments ==================== */
@media (max-width: 768px) {
  /* Hero Section */
  #hero {
    padding-top: 100px; /* More top padding to accommodate fixed header */
    min-height: auto;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .left-column {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 16px;
  }
  .hero-video {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    background-color: transparent;
  }

  /* Header */
  header {
    padding: 6px 15px;
    width: 90%;
    max-width: none;
    top: 5px;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .nav-links {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
  }
  .nav-links.nav-active {
    display: flex;
    opacity: 1;
  }

  /* Hide the CTA outside the nav on mobile, show inside nav links */
  nav .cta-rounded-button {
    display: none;
  }
  .nav-links li .cta-rounded-button {
    display: block;
  }

  nav .cta-rounded-button {
    display: inline-block !important;
  }

#interactive-features .section-intro {
  margin-bottom: 40px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.04); /* Very light overlay */
  border-radius: 8px;
}

  /* Features Section */
  .features-layout {
    gap: 40px;
  }
  .feature-item {
    flex-direction: column;
  }
  .feature-item:nth-child(odd) {
    flex-direction: column;
  }
  .features-layout .feature-item:first-child {
    margin-top: 20px;
  }
  .feature-image {
    background: transparent; /* Let the section's gradient show through */
    overflow: hidden;
  }
  .feature-image img {
    max-width: 300px;
    margin-bottom: 20px;
  }
  .feature-text {
    text-align: center;
  }

  /* Pricing Section */
  .pricing-container {
    flex-direction: column;
    gap: 20px;
  }
  .pricing-card {
    max-width: 100%;
    margin: 0 auto;
  }

  /* About, Signup, and Social Proof also stack nicely */
  #social-proof, #about, #signup {
    padding: 40px 20px;
  }
  #social-proof h2, #about h2, #signup h2 {
    font-size: 28px;
  }
  #contact form {
    padding: 20px;
  }
  #contact form button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* ==================== Responsive (iPad) Adjustments ==================== */
@media screen and (orientation: portrait) and (max-width: 834px) {
  /* iPad portrait for ~768, 820, or 834 wide */

  .hero-video {
    max-width: 400px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .feature-image img,
  .feature-image video {
    max-width: 350px;
    margin: 0 auto;
  }

header {
    width: 95%;             /* Instead of 90% or 1100px max */
    padding: 8px 20px;      /* Less horizontal padding */
    top: 10px;              /* Move it slightly up to save space */
    border-radius: 12px;    /* Less rounding for more space */
  }

  /* Logo text smaller */
  .logo h1 {
    font-size: 24px;        /* Instead of 30px */
  }

  /* Nav link spacing & font size */
  .nav-links {
    gap: 20px;              /* Reduce gap from 30px */
  }
  .nav-links li a {
    font-size: 14px;        /* Smaller text so they fit horizontally */
  }

  /* If you have a CTA button in the nav, shrink it too */
  .cta-rounded-button {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 15px;
  }
}
/* How It Works – ordered list tuning */
.how-it-works { 
  text-align: center;
}

.how-it-works ol {
  list-style: decimal;
  list-style-position: inside;     /* numbers sit with the text */
  margin: 1rem auto 0;             /* center the list block */
  padding-left: 0;                  /* remove extra left gap */
  max-width: 560px;                 /* narrower column so it looks centered under the heading */
  text-align: center;               /* center each line */
}

.how-it-works li {
  margin: 0.4rem 0;                /* slightly tighter vertical spacing */
  line-height: 1.5;
}

.how-it-works li::marker {
  font-weight: 600;
}

@media (min-width: 768px) {
  .how-it-works ol { padding-left: 1.5rem; }
}

/* General Styling for Privacy Policy */
.privacy-container {
  width: 90%; /* Keep the container relative to viewport width */
  max-width: 90vw; /* Adjust for large screens */
  margin: 100px auto 0 auto; /* Center horizontally and add top margin */
  padding: 5%; /* Relative padding for flexibility */
  background: none; /* No background */
  border-radius: 0;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #fff; /* White text for better contrast */
}

.privacy-container p,
.privacy-container ul,
.privacy-container ol {
  max-width: 100%; /* Allow paragraphs and lists to span fully */
  margin-bottom: 1.5em; /* Add spacing between elements */
  color: #fff; /* Ensure text is readable */
  font-size: 1rem; /* Use rem for scalable font sizes */
  word-wrap: break-word; /* Prevent text overflow */
  overflow-wrap: break-word; /* Additional compatibility */
}

.privacy-container h1,
.privacy-container h2,
.privacy-container h3,
.privacy-container h4,
.privacy-container h5,
.privacy-container h6 {
  color: #fff; /* White text for all headings */
  margin-top: 2em; /* Add spacing above headings */
  margin-bottom: 0.75em; /* Add spacing below headings */
}

/* h1 prominent and centered */
.privacy-container h1 {
  font-size: 2em; /* Scalable size */
  font-weight: 600;
  text-align: center;
}

/* h2 slightly smaller than h1 */
.privacy-container h2 {
  font-size: 1.75em;
  font-weight: 500;
}

/* h3 even smaller */
.privacy-container h3 {
  font-size: 1.4em;
  font-weight: 500;
}

/* Links should be blue for visibility */
.privacy-container a {
  color: #4ca0ff;
  text-decoration: underline;
}

.privacy-container a:hover {
  text-decoration: none;
  color: #66b2ff;
}

/* Lists with white text and simple bullets */
.privacy-container ul {
  list-style: disc inside; /* Simple bullet points */
  padding-left: 1em;
  margin-left: 0;
}

/* Horizontal rules for subtle dividers */
.privacy-container hr {
  border: none;
  border-top: 1px solid #333; /* Subtle gray line */
  margin: 3em 0;
}

/* Table of Contents or Summary Section Styling */
.privacy-container .summary-section,
.privacy-container .table-of-contents {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: left;
}

/* Images and Media Responsiveness */
.privacy-container img {
  max-width: 100%; /* Ensure images scale to fit the container */
  height: auto; /* Maintain aspect ratio */
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .privacy-container {
    margin: 50px auto; /* Reduce top margin on smaller screens */
    padding: 20px; /* Reduce padding for smaller devices */
  }

  .privacy-container h1 {
    font-size: 1.8em; /* Slightly smaller h1 */
  }

  .privacy-container h2 {
    font-size: 1.5em;
  }

  .privacy-container h3 {
    font-size: 1.2em;
  }

  .privacy-container p,
  .privacy-container ul,
  .privacy-container ol {
    font-size: 0.9rem; /* Adjust font size for readability */
  }
}

/* ==================== Terms of Use Page Styling ==================== */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212; /* Dark theme */
  color: #eee; /* Bright text for contrast */
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* Container for the Terms of Use */
.terms-container {
  width: 90%;
  max-width: 900px;
  margin: 100px auto 50px auto; /* Center the content with top spacing */
  background: #1a1a1a; /* Slightly lighter background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Header Styling */
.terms-container h1 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.terms-container p {
  font-size: 18px;
  color: #ccc;
}

/* Section Headings */
.terms-container h2 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 30px;
  color: #ffa650; /* Soft orange accent for headings */
  border-bottom: 2px solid #ffa650; /* Underline effect */
  padding-bottom: 5px;
}

/* Subsections */
.terms-container h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
  color: #ddd;
}

/* Lists */
.terms-container ul {
  list-style: none;
  padding-left: 20px;
}

.terms-container ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ccc;
}

/* Custom list bullet icon */
.terms-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffa650; /* Soft orange accent */
  font-size: 18px;
  font-weight: bold;
}

/* Links */
.terms-container a {
  color: #4ca0ff;
  text-decoration: underline;
}

.terms-container a:hover {
  color: #66b2ff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    width: 95%;
    padding: 25px;
  }

  .terms-container h1 {
    font-size: 30px;
  }

  .terms-container h2 {
    font-size: 24px;
  }

  .terms-container p,
  .terms-container ul li {
    font-size: 16px;
  }
}