/* Keep your existing .simple-about-section and .about-box styles */

.simple-about-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.about-box {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.about-box h2 {
    font-size: 2em;
    color: #194210;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

.about-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8cb98c;
    margin: 8px auto 0;
}

.about-box p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}
.about-box p:last-child {
    margin-bottom: 0;
}

/* --- NEW STYLES FOR STATS SECTION --- */
.stat-icon {
    font-size: 2.5em; /* Adjust size as needed */
    color: #8cb98c; /* Your accent color, or choose another */
    margin-bottom: 15px; /* Space between icon and number */
}
.stats-section {
    padding: 40px 20px;
    background-color: #f4f7f6; /* A slightly different background for separation */
    text-align: center; /* Center the heading and grid container */
}

.stats-container {
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
}

.stats-section h2 {
    font-size: 2em;
    color: #194210; /* Your main theme color */
    margin-top: 0;
    margin-bottom: 30px;
}

/* Optional: Underline for the stats heading */
.stats-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8cb98c; /* Your accent color */
    margin: 8px auto 0; /* Center the underline */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between grid items */
    justify-content: center;
}

/* NEW: Styles for the link wrapping stat-item */
.stat-link {
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Make link text color same as parent (so .stat-number, .stat-label colors apply) */
    display: block; /* Important for the link to take up the grid cell space */
}

/* .stat-link:hover { */
    /* If you want hover effects directly on the link, add them here. */
    /* But the :hover on .stat-item should still work if the link is display:block */
/* } */


.stat-item {
    background-color: #ffffff; /* White background for each stat item */
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Slightly more pronounced shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth hover effect */
    height: 100%; /* Make the div fill the link, useful if link is display:block in grid */
}

.stat-item:hover {
    transform: translateY(-5px); /* Lift item on hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.12); /* Increase shadow on hover */
    background-color: rgb(224, 226, 225);
}

.stat-number {
    font-size: 2.2em; /* Large font for the number */
    font-weight: bold;
    color: #194210; /* Your main theme color */
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1em;
    color: #555; /* Dark gray for the label */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Central hero search === */
.home-hero {
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(0deg, #f4f7f6, #ffffff);
}

.hero-title {
  font-size: 2.2rem;
  color: #194210;
  margin: 0 0 18px;
}

.hero-search .search-wrap {
  display: flex;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  align-items: center;
}

.home-hero .search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 1.05rem;
  padding: 10px 14px;
}

.home-hero .search-select {
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  padding: 10px 14px;
  font-size: 0.95rem;
  background: #fff;
}

.home-hero .search-button {
  border: none;
  border-radius: 9999px;
  padding: 10px 16px;
  font-weight: 600;
  background: #8cb98c;
  color: #194210;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.search-button:hover { filter: brightness(0.95); }

.search-examples {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}
.search-examples a {
  color: #194210;
  text-decoration: underline;
}
.search-examples a:hover { text-decoration: none; }

/* a11y helper */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Stack controls on small screens */
@media (max-width: 768px) {
  .hero-search .search-wrap { flex-direction: column; border-radius: 16px; }
  .search-input, .search-select, .search-button { width: 100%; }
}
