body {
    font-family: "Montserrat", sans-serif;
    color: #4b5563; /* Gray-600 */
}
h1,
h2,
h3 {
    font-family: "Fraunces", serif;
    color: #1f2937; /* Gray-800 */
}
.bg-custom-green {
    background-color: #e6f3f1; /* A very light, calming green */
}
.text-custom-green {
    color: #00796b; /* A deeper green for accents */
}
.border-custom-green {
    border-color: #00796b;
}
.btn-primary {
    background-color: #00796b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #004d40;
}
.hero-bg {
    background-image: url("../img/kawasaki-toshihiro-IhUEB4zXzo8-unsplash.jpg");
    background-size: cover;
    background-position: center;
}
.nav-link {
    transition: color 0.3s;
}
.nav-link:hover {
    color: #00796b;
}
