body {
  background: white;
  font-family: "Arial", sans-serif;
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(#0F4F86, #0F4F86);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* start from top, then adjust with padding */
  height: 300px;
  position: relative;
  text-align: center;
  padding-top: 120px; /* ✅ moves text downward neatly */
}

/* --- HERO TITLE --- */
.hero-title {
  font-family: 'La Belle Aurore', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  line-height: 120px;
  color: white;
  margin: 0;
  text-transform: capitalize;
}
.resources-grid {
  width: 100%;
}

.resource-card {
  width: calc(33.333% - 20px);
  margin-bottom: 20px;
  margin-right: 20px;
}
/* --- RESPONSIVE DESIGN --- */

/* ✅ Tablets */
@media (max-width: 1024px) {
  .hero-section {
    height: 500px;
    padding-top:220px;
  }

  .hero-title {
    font-size: 90px;
    line-height: 100px;
  }
}

/* ✅ Small Tablets / Large Phones */
@media (max-width: 768px) {
  .hero-section {
    height: 250px;
    padding-top: 110px;
     /* padding-top:10px; */
  }

  .hero-title {
    font-size: 65px;
    line-height: 75px;
  }
}

/* ✅ Smartphones */
@media (max-width: 480px) {
  .hero-section {
    height: 250px;
    padding-top:160px;
  }

  .hero-title {
    font-size: 40px;
    line-height:10px;
  }
}

/* ✅ Very Small Devices */
@media (max-width: 360px) {
  .hero-section {
    height: 230px;
    padding-top: 140px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
}





.urologist-section {
  text-align: center;
  padding: 60px 20px;
  color: #2F3133;
  font-weight: 600;
}

.urologist-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem; /* ~32px on most browsers */
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 20px;
}


.urologist-section h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem; /* ~32px on most browsers */
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.urologist-section p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem; /* Base 16px, scales naturally */
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 800px;
  color: #2F3133;
  padding: 0 10px;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* For large tablets & small laptops (≤1200px) */
@media (max-width: 1200px) {
  .urologist-section {
    padding: 50px 15px;
  }
  .urologist-section h2 {
    font-size: 1.8rem;
  }
  .urologist-section p {
    font-size: 0.95rem;
    max-width: 700px;
  }
}

/* For tablets (≤768px) */
@media (max-width: 768px) {
  .urologist-section {
    padding: 40px 15px;
  }
  .urologist-section h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .urologist-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
  }
}

/* For mobile phones (≤480px) */
@media (max-width: 480px) {
  .urologist-section {
    padding: 30px 10px;
  }
  .urologist-section h2 {
    font-size: 1.4rem;
  }
  .urologist-section p {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 100%;
  }
}



.map-location-section {
  text-align: center;
  padding: 60px 8%;
  background-color: #fff;
  color: #222;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.description {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}


/* RESET
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
} */

/* SECTION WRAPPER */
.patient-section {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

/* BUTTON GROUP */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.info-btn {
  background: #0a4b8e;
  color: #fff;
  padding: 15px 45px; /* Increased height, slightly less width */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px; /* Increased font size */
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  min-width: 260px; /* Optional: ensures consistent size */
}

.info-btn:hover {
  background: #073769;
  transform: translateY(-2px);
}

/* GREEN CHECKLIST BOX */
.checklist-box {
  background: #0ea44a;
  border-radius: 15px;
  color: white;
  width: 100%;
  /* max-width: 900px; */
  padding: 30px;
  margin-bottom: 40px;
}

.checklist-box ul {
  list-style: none;
}

.checklist-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.checklist-box i {
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

/* BLUE INSURANCE BOX */
.insurance-box {
  background: #0a4b8e;
  color: white;
  border-radius: 15px;
  padding: 40px 30px;
  width: 100%;
  /* max-width: 900px; */
  text-align: center;
}

.insurance-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.insurance-box p {
  font-size: 15px;
  line-height: 1.7;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .info-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .checklist-box,
  .insurance-box {
    padding: 25px 20px;
  }

  .insurance-box h2 {
    font-size: 20px;
  }
  .section-desc{
    text-align: justify;
  }
  .insurance-box p {
    font-size: 14px;
    text-align: justify;
  }
  .resource-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
    gap: 15px;
  }

  .info-btn {
    width: 100%;
    /* max-width: 300px; */
  }

  .checklist-box li {
    font-size: 15px;
  }

  .insurance-box p {
    font-size: 14px;
  }
  .resource-card {
    width: 100%;
  }
}


/* Section Wrapper */
.resources-section {
  padding: 60px 8%;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #002f6c;
}

.section-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Masonry Grid Layout */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  align-items: start; /* ✅ allows each card to keep its own natural height */
}

/* Individual Card */
.resource-card {
  border: 1.5px solid #cfd8dc;
  border-radius: 10px;
  background: #fff;
  padding: 20px 20px 25px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.resource-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Icon Box */
.icon-box {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title */
.resource-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #002f6c;
}

/* Links and Text */
.resource-card a {
  display: block;
  font-size: 14px;
  color: #0077cc;
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.resource-card a:hover {
  text-decoration: underline;
  color: #004a80;
}

.resource-card p {
  font-size: 14px;
  color: #444;
  margin: 2px 0 4px;
}

/* Special Fix: make cards look balanced even with uneven text */
.resources-grid::after {
  content: "";
  flex-grow: 999999999;
  min-width: 300px;
}

/* Responsive */
@media (max-width: 992px) {
  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 600px) {
  .resources-section {
    padding: 40px 5%;
  }
  .section-title {
    font-size: 26px;
  }
}