html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f4fff8, #e8f3ff);
    padding: 80px 0;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    color: #198754 !important;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: #198754 !important;
    }

.value-section {
    background: #ffffff;
}

.value-card {
    height: 100%;
    padding: 28px;
    border-radius: 18px;
    background: #f8fdf9;
    border: 1px solid rgba(25, 135, 84, 0.15);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    }

    .value-card h4 {
        color: #198754;
        font-weight: 700;
        margin-bottom: 12px;
    }
