/* =====================
   Global Styles
===================== */
body {
  margin: 0;
  font-family: Georgia, serif;   /* Georgia for body text */
  font-weight: 400;
  background: #fff;
  color: #013738;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', sans-serif; /* Headings use Anton */
  font-weight: 500;
  text-align: center;
  margin: 1rem 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================
   Header
===================== */
.site-header {
  background: #013738;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  font-family: 'Anton', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #7CD329;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #013738;
    padding: 1rem;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/* =====================
   Hero
===================== */
.hero {
  background: #013738;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.hero p {
  font-family: Georgia, serif;
}

.hero .btn {
  background: #7CD329;
  color: #013738;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-family: 'Anton', sans-serif;
}

.hero .btn:hover {
  background: #025c5c;
}

/* =====================
   Sections (General)
===================== */
section { padding: 2rem 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

/* =====================
   Global Cards
===================== */
.card {
  background: #7CD329;
  color: #013738;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.note {
  text-align: center;
  font-style: italic;
}

/* =====================
   About
===================== */
.about-container {
  display: flex;
  flex-direction: column;   /* default mobile */
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-text {
  flex: 1;
  text-align: center;
  order: 2;  /* text comes second on mobile */
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 1;  /* image comes first on mobile */
}

.about-image img {
  width: 100%;
  max-width: 300px;   /* smaller size */
  max-height: 250px;  /* keeps it shorter */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Desktop layout */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;   /* side by side */
    align-items: center;
    text-align: left;
  }

  .about-text {
    order: 1;  /* text first on desktop */
    text-align: left;
    padding-right: 2rem;
  }

  .about-image {
    order: 2;  /* image second on desktop */
  }
}


.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.info-cards .card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

/* =====================
   Courses
===================== */
.courses {
  background: #fff;
  padding: 3rem 1rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.course-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.course-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.course-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 500;
  margin: 1rem 0 0.5rem;
  color: #013738;
  font-size: 1.2rem;
}

.course-card .about {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.course-card p {
  margin: 0.3rem 0 1rem;
  font-size: 1rem;
}

.course-card p strong {
  font-weight: 700;
  color: #013738;
}

.course-card .btn {
  margin: auto auto 1rem auto;
  padding: 0.7rem 1.5rem;
  background: #25D366;
  color: #013738;
  font-family: 'Anton', sans-serif;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s ease;
}

.course-card .btn:hover { background: #1ebc57; }

/* =====================
   Mentorship
===================== */
.mentorship {
  background: #f9f9f9;
  text-align: center;
  padding: 3rem 1rem;
}

.mentorship .intro {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.mentorship-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mentorship-options .option {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.mentorship-options .option:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.mentorship-options h3 {
  font-family: 'Anton', sans-serif;
  color: #013738;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.mentorship-options p {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #444;
}

.mentorship .btn {
  padding: 0.75rem 1.5rem;
  background: #7CD329;
  color: #013738;
  font-family: 'Anton', sans-serif;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s ease;
}

/* Subjects Section */
.subjects-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
}

.subjects-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #013738;
}

.subjects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

.subject-card {
  background: #7CD329;  /* same green as Why Choose */
  color: #013738;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.subject-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.more-text {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  color: #013738;
}

/* Responsive */
@media (min-width: 768px) {
  .subjects-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on bigger screens */
  }
}

.subjects-grid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.subject-card {
  width: 100%;
  box-sizing: border-box;
}

/* Prevent horizontal overflow in Subjects Offered */
.subjects-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 0 1rem; /* keep a little breathing space */
}

.subjects-grid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.subject-card {
  width: 100%;
  box-sizing: border-box;
}


/* =====================
   Testimonials
===================== */
.testimonials { background: #f9f9f9; }

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 50%; /* Mobile: 2 visible */
  padding: 0.5rem;
}

@media (min-width: 769px) {
  .testimonial-card { flex: 0 0 33.333%; } /* Desktop: 3 visible */
}

.testimonial-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #013738;
  color: #fff;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 10;
  transition: background 0.3s;
}
.carousel-btn:hover { background: #7CD329; }
.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonial-card img {
    height: auto;
    max-height: none;
    width: 100%;
    object-fit: contain;
  }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active { background: #013738; }

/* =====================
   CTA
===================== */
.cta-banner {
  background: #013738;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

/* =====================
   Contact
===================== */
.contact {
  text-align: center;
  background: #f9f9f9;
  padding: 3rem 1rem;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #7CD329;
  box-shadow: 0 0 5px rgba(124, 211, 41, 0.5);
}

.contact button {
  background: #7CD329;
  color: #013738;
  font-family: 'Anton', sans-serif;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: center;
}

.contact button:hover { background: #fff; }

/* =====================
   Buttons (General)
===================== */
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

.primary {
  background: #7CD329;
  color: #013738;
}

.secondary {
  background: #fff;
  color: #013738;
}

/* =====================
   Footer
===================== */
footer {
  background: #013738;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-family: Georgia, serif;
}

footer a {
  color: #7CD329;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-content {
  max-width: 800px;
  margin: auto;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  background: #7CD329;
  color: #013738;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #7CD329;
  transform: scale(1.1);
}

/* =====================
   Floating Buttons
===================== */
.whatsapp-fab, .scroll-to-top {
  position: fixed;
  right: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;
}

/* WhatsApp FAB */
.whatsapp-fab {
  bottom: 80px;
  background: #25d366;
  width: 55px;
  height: 55px;
  font-size: 28px;
  animation: pulse 1.5s infinite;
}

/* Scroll-to-top */
.scroll-to-top {
  bottom: 20px;
  background: #7CD329;
  width: 45px;
  height: 45px;
  font-size: 20px;
  text-decoration: none;  /* remove underline */
  border: none;           /* remove border */
  outline: none;          /* remove focus outline */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  color: #fff;
}

.scroll-to-top:focus {
  outline: none; /* ensures no black outline */
  box-shadow: 0 0 0 3px rgba(124, 211, 41, 0.5); /* optional soft glow instead */
}
.scroll-to-top:hover { background: #5cbf27; }

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================
   Register Page Styles
===================== */
.register-section {
  max-width: 650px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.register-section h2 {
  text-align: center;
  font-family: 'Anton', sans-serif;
  margin-bottom: 1.5rem;
  color: #013738;
}

/* Labels */
.register-section label,
.register-section legend {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  color: #013738;
  font-size: 0.95rem;
}

.register-section .req {
  color: red;
  margin-left: 4px;
}

/* Inputs, selects, textarea */
.register-section input,
.register-section select,
.register-section textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.register-section textarea {
  resize: vertical;
  min-height: 80px;
}

/* Subjects grid */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.subjects-grid label {
  background: #f5f5f5;
  padding: 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  font-size: 0.9rem;
  cursor: pointer;
}

.subjects-grid input[type="checkbox"] {
  accent-color: #7CD329; /* secondary green */
}

/* Buttons */
.form-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.form-buttons .btn {
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-family: 'Anton', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}

.form-buttons .btn.primary {
  background: #7CD329;
  color: #013738;
}

.form-buttons .btn.primary:hover {
  background: #6ab220;
}

.form-buttons .btn.secondary {
  background: #013738;
  color: #fff;
}

.form-buttons .btn.secondary:hover {
  background: #025455;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .register-section {
    padding: 1.5rem;
  }
  .subjects-grid {
    grid-template-columns: 1fr;
  }
  .form-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Multi-select dropdown styling */
.register-section select[multiple] {
  height: auto;
  min-height: 150px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: Georgia, serif;
  background: #fdfdfd;
  overflow-y: auto;
}

.register-section select[multiple] option {
  padding: 0.4rem;
  margin: 0.2rem 0;
  border-radius: 4px;
  cursor: pointer;
}

.register-section select[multiple] option:checked {
  background: #7CD329;
  color: #013738;
  font-weight: bold;
}

/* =====================
   Multiselect Dropdown
===================== */
.multiselect {
  position: relative;
  width: 100%;
  z-index: 20; /* sit above other elements */
}

.ms-toggle {
  width: 100%;
  background: #fff;
  color: #013738;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}

.ms-toggle::after {
  content: "▾";
  font-size: 1rem;
  line-height: 1;
  color: #013738;
  margin-left: auto;
}

.ms-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  max-height: 260px;
  overflow: auto;
  padding: 0.5rem;
  display: none; /* hidden by default */
}

.multiselect.open .ms-menu { display: block; }

.ms-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.ms-option:hover {
  background: #f3f8ee; /* subtle */
}

.ms-option input[type="checkbox"] {
  accent-color: #7CD329; /* brand green */
}

.ms-hint {
  color: #666;
  font-size: 0.85rem;
}

/* When something is selected, give the toggle a filled look */
.multiselect.has-value .ms-toggle {
  border-color: #7CD329;
  box-shadow: 0 0 0 3px rgba(124,211,41,.15);
}

/* Small screens: keep menu full width and accessible */
@media (max-width: 480px) {
  .ms-menu { max-height: 300px; }
}

/* Dropdown Multi-Select */
.dropdown-multi {
  position: relative;
  width: 100%;
}

.dropdown-multi button {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: left;
  background: #fff;
  font-family: Georgia, serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-multi button::after {
  content: "▾";
  font-size: 1.1rem;
  color: #013738;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  margin-top: 5px;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.dropdown-multi.open .dropdown-menu {
  display: block;
}

.dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #013738;
  transition: background 0.2s;
}

.dropdown-menu label:hover {
  background: #f9f9f9;
}

.dropdown-menu input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
  accent-color: #7CD329;
  cursor: pointer;
}

/* Dropdown option rows */
.dropdown-menu label {
  display: flex;
  align-items: center;       /* keep checkbox + text aligned */
  gap: 0.4rem;               /* small gap between checkbox and text */
  padding: 0.3rem 0.6rem;    /* balanced row height */
  font-size: 0.9rem;
  font-family: Georgia, serif;
  color: #013738;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
  line-height: 1.2;
  white-space: nowrap;       /* keep text on one line */
  overflow: hidden;
  text-overflow: ellipsis;   /* truncate if too long */
}

.dropdown-menu label:last-child {
  border-bottom: none;
}

/* Checkbox styling */
.dropdown-menu input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;            /* checkbox won’t shrink */
  transform: scale(1.1);     /* slightly bigger */
  accent-color: #7CD329;     /* brand green */
}

#subjects {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  background: #fff;
  cursor: pointer;
}

/* Subjects Section wrapper */
.subjects-section {
  max-width: 100%;
  padding: 2rem 1rem;   /* normal padding, no big box */
  background: #fff;    /* plain background, not a card */
  box-sizing: border-box;
}

/* Grid holds the cards neatly */
.subjects-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

/* Each subject is its own card */
.subject-card {
  background: #7CD329;  /* your green */
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #013738;
  box-sizing: border-box;
}

.course-card {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;   /* allow wrapping */
  text-align: center;    /* optional, to balance look */
  padding: 1rem;         /* keep spacing inside */
}

.course-card h3, 
.course-card p {
  margin: 0.5rem 0;
  line-height: 1.4;
}

.why-section {
  padding: 2rem 1rem;
  background: #f9f9f9;
  border-radius: 10px;
}

.why-section h2 {
  text-align: center;
  font-family: 'Anton', sans-serif;
  color: #013738;
  margin-bottom: 1.5rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-item {
  background: #fff;
  border-left: 5px solid #7CD329; /* brand green highlight */
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.why-item p {
  margin: 0.3rem 0;
  color: #013738;
  line-height: 1.5;
}

.why-item strong {
  color: #013738;
}

.why-section {
  padding: 2rem 1rem;
  background: #f9f9f9;
  border-radius: 10px;
}

.why-section h2 {
  text-align: center;
  font-family: 'Anton', sans-serif;
  color: #013738;
  margin-bottom: 1.5rem;
}

.why-items {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr; /* default for very small screens */
}

.why-item {
  background: #fff;
  border-left: 5px solid #7CD329; /* brand green */
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.why-item p {
  margin: 0.3rem 0;
  color: #013738;
  line-height: 1.5;
}

.why-item strong {
  color: #013738;
}

/* 2 columns for mobile (>=600px) */
@media (min-width: 600px) {
  .why-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns for desktop (>=1024px) */
@media (min-width: 1024px) {
  .why-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

