html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 80px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #eefaf4 0%, #dff3e8 100%);
    color: #16382d;
}

a {
    color: #198754;
    text-decoration: none;
}

    a:hover {
        color: #0f6b43;
        text-decoration: none;
    }

.navbar {
    background: linear-gradient(90deg, #b9ebd4 0%, #9fe0c3 100%) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 700;
    color: #0f5c3b !important;
}

.nav-link {
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 14px !important;
    transition: 0.2s ease;
    color: #16382d !important;
}

    .nav-link:hover {
        background-color: rgba(25, 135, 84, 0.18);
        color: #0f5c3b !important;
    }

.container main {
    padding-top: 10px;
}

.hero-section {
    background: linear-gradient(135deg, #bdeed8 0%, #eafaf2 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(20, 92, 70, 0.12);
    margin-bottom: 35px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f5c3b;
}

.hero-text {
    font-size: 1.1rem;
    color: #2c5446;
    margin-top: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f5c3b;
    margin-bottom: 20px;
}

.custom-card {
    background: #ffffff;
    border: 1px solid #d1eadc;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(20, 92, 70, 0.10);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

    .custom-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(20, 92, 70, 0.16);
    }

    .custom-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

.custom-card-body {
    padding: 18px;
}

.custom-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f5c3b;
    margin-bottom: 10px;
}

.custom-card-text {
    color: #36584b;
    margin-bottom: 0;
}

.info-box {
    background: #ffffff;
    border-left: 6px solid #2fb879;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(20, 92, 70, 0.10);
    margin-bottom: 20px;
}

    .info-box h4 {
        color: #0f5c3b;
        font-weight: 700;
        margin-bottom: 12px;
    }

.table {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(20, 92, 70, 0.10);
}

    .table thead {
        background: #bfeeda;
    }

        .table thead th {
            color: #0f5c3b;
            border-bottom: none !important;
            vertical-align: middle;
            font-weight: 700;
        }

    .table td,
    .table th {
        vertical-align: middle;
    }

.table-hover tbody tr:hover {
    background-color: #edf9f2;
}

.card {
    border: 1px solid #d1eadc;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(20, 92, 70, 0.10);
}

.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 9px 16px;
}

.btn-success {
    background-color: #239b63;
    border-color: #239b63;
}

    .btn-success:hover {
        background-color: #1c7f51;
        border-color: #1c7f51;
    }

.btn-primary {
    background-color: #2f8fcb;
    border-color: #2f8fcb;
}

    .btn-primary:hover {
        background-color: #2678ab;
        border-color: #2678ab;
    }

.btn-warning {
    color: #fff;
    background-color: #d99a2b;
    border-color: #d99a2b;
}

    .btn-warning:hover {
        color: #fff;
        background-color: #bd831f;
        border-color: #bd831f;
    }

.btn-danger {
    background-color: #d9534f;
    border-color: #d9534f;
}

    .btn-danger:hover {
        background-color: #c13f3b;
        border-color: #c13f3b;
    }

.btn-secondary {
    background-color: #6f7f78;
    border-color: #6f7f78;
}

    .btn-secondary:hover {
        background-color: #5c6a64;
        border-color: #5c6a64;
    }

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(20, 92, 70, 0.12);
}

.contact-card {
    background: #ffffff;
    border: 1px solid #d1eadc;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(20, 92, 70, 0.10);
    height: 100%;
}

    .contact-card h4 {
        color: #0f5c3b;
        font-weight: 700;
        margin-bottom: 15px;
    }

.footer {
    background: #b9ebd4;
    color: #0f5c3b !important;
    padding: 18px 0;
}
