/* navbar  */
    :root {
      --banner-bg: #00a58c;
      --navbar-bg: #ccf8eb;
      --primary: #008066;
      --text-dark: #053b33;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: #f6f6f6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* TOP SUBHEAD BANNER IMAGE */
    .top-banner {
      width: 100%;
      background: var(--banner-bg);
    }

    .top-banner img {
      width: 100%;
      display: block;
      object-fit: cover;
    }



    /* NAVBAR STYLES */
    /* --- Main Section Styling --- */
.Discreet-01 {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #333;
}

.Discreet-01__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.Discreet-01__main-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.Discreet-01__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  margin-top: 40px;
}

/* Text Paragraphs */
.Discreet-01__intro,
.Discreet-01__text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* --- The Pill Divider Line --- */
.Discreet-01__divider {
  position: relative;
  width: 100%;
  max-width: 600px; /* Limits line width like in the image */
  height: 1px;
  background-color: #0d4f4e; /* The dark teal line color */
  margin: 15px auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Pill Icon (Red/White capsule) */
.Discreet-01__pill-icon {
  display: block;
  width: 24px;
  height: 12px;
  background: linear-gradient(90deg, #ffffff 50%, #dc2626 50%); /* White left, Red right */
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 99px; /* Pill shape */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- Trust Badges Grid --- */
.Discreet-01__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee; /* Optional top separator */
}

.Discreet-01__badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px; /* Fixed width for alignment */
  text-align: center;
}

.Discreet-01__badge-img {
  height: 60px; /* Adjust based on your actual icons */
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.Discreet-01__badge-label {
  font-size: 13px;
  font-weight: 600;
  background: #f3f4f6; /* Light grey pill background */
  padding: 4px 12px;
  border-radius: 12px;
  color: #374151;
  white-space: nowrap;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .Discreet-01__main-title {
    font-size: 28px;
  }
  
  .Discreet-01__divider {
    width: 80%; /* Shorter lines on mobile */
  }

  .Discreet-01__badges {
    gap: 20px;
  }
  
  .Discreet-01__badge-item {
    width: 45%; /* 2 items per row on tablets/large phones */
  }
}

@media (max-width: 480px) {
  .Discreet-01 {
    padding: 40px 15px;
  }

  .Discreet-01__main-title {
    font-size: 24px;
  }
  
  .Discreet-01__badge-item {
    width: 100%; /* Stack badges vertically on very small screens */
    margin-bottom: 10px;
  }
}
/* end */

/* section  */

/* Section Container */
.Discreet-001 {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.Discreet-001__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- ALERT BOX STYLE --- */
/* Update this to center the ALERT content */
.Discreet-001__alert {
  display: flex;
  align-items: center;
  justify-content: center; /* This centers the content horizontally */
  background-color: #f0fdf9;
  border: 1px solid #ccfbf1;
  padding: 12px 20px;
  margin-bottom: 30px;
  border-radius: 4px;
  color: #0f766e;
  font-size: 14px;
  text-align: center; /* Ensures text inside is centered if it wraps */
}

/* Update this to center the HEADING */
.Discreet-001__heading {
  font-size: 28px;
  font-weight: 800;
  color: #003d4c;
  margin-bottom: 30px;
  text-align: center; /* This centers the heading text */
}

.Discreet-001__icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
}

.Discreet-001__alert a {
  color: #0f766e;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 5px;
}


/* --- CARDS GRID --- */
.Discreet-001__grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap; /* Allows wrapping on small screens */
}

/* --- INDIVIDUAL CARD --- */
.Discreet-001__card {
  flex: 1; /* All cards take equal width */
  min-width: 200px; /* Prevents them from getting too squished */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

/* Card Header (Green Part) */
.Discreet-001__card-header {
  background-color: #0e7470; /* The teal green color from your image */
  color: #ffffff;
  padding: 15px;
  font-weight: 700;
  font-size: 16px;
}

/* Card Body (White Part) */
.Discreet-001__card-body {
  padding: 20px 15px;
  min-height: 80px; /* Ensures consistent height */
}

.Discreet-001__price {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  text-transform: uppercase;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .Discreet-001__grid {
    gap: 15px;
  }
  
  .Discreet-001__card {
    min-width: 45%; /* 2 cards per row on tablets */
    flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .Discreet-001__card {
    min-width: 100%; /* 1 card per row on mobile phones */
    flex-basis: 100%;
  }

  .Discreet-001__heading {
    font-size: 24px;
    text-align: center;
  }
  
  .Discreet-001__alert {
    flex-direction: column; /* Stack icon and text if space is tight */
    text-align: center;
  }
  
  .Discreet-001__icon {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
/* end */