html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    color: #375A3E;
}

p, li {
    color: #2E2E2E;
}

.btn-success {
    background-color: #4F805D !important;
    border: none;
}

    .btn-success:hover {
        background-color: #3E6A4C !important;
    }

main {
    flex: 1;
}

footer {
    background-color: #375A3E;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}


.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    background-color: #f6f9f6;
    border-radius: 20px;
    padding: 1.5rem;
    width: 250px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .team-member img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-member h5 {
        font-weight: 600;
        margin-top: 1rem;
    }

    .team-member p {
        font-size: 0.9rem;
        color: #555;
        margin: 0.4rem 0;
    }

    .team-member a.btn {
        border-radius: 12px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

        .team-member a.btn:hover {
            background-color: #375A3E;
            color: #fff;
        }

/* HERO SECTION */
.hero-section {
    background: linear-gradient(180deg, #e8f3ea 0%, #ffffff 100%);
    min-height: 85vh;
    padding: 4rem 1rem;
}

.hero-logo {
    width: 160px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3rem;
    color: #375A3E;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.hero-btn {
    background-color: #4F805D;
    color: white;
    border-radius: 30px;
    padding: 0.8rem 2.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background-color: #375A3E;
        transform: translateY(-3px);
    }

/* FEATURES SECTION */
.features-section {
    background-color: #f6f9f6;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

.feature-icon {
    font-size: 2.5rem;
    color: #4F805D;
    margin-bottom: 1rem;
}
