/* =========================
   VOLUNTEER PAGE
========================= */
.volunteer-page {
    color: #192850;
    background: #ffffff;
}

/* Hero */
.volunteer-hero {
    padding: 90px 20px 80px;
    background: linear-gradient(135deg, #38b6ff 0%, #192850 100%);
    color: #ffffff;
    text-align: center;
}

.volunteer-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.volunteer-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Container */
.volunteer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Intro */
.volunteer-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.volunteer-intro h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.volunteer-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Volunteer Areas */
.volunteer-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.volunteer-area-card {
    background: #f7f9fc;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
}

.volunteer-area-card img {
    width: 55px;
    margin-bottom: 15px;
}

.volunteer-area-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.volunteer-area-card p {
    font-size: 14px;
    color: #555;
}

/* Form */
.volunteer-form-wrapper {
    background: #f7f9fc;
    border-radius: 20px;
    padding: 50px 40px;
}

.volunteer-form-wrapper h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.volunteer-form-note {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 35px;
}

.volunteer-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.input-group {
    position: relative;
}

.input-group.full {
    grid-column: span 2;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: -9px;
    background: #fff;
    padding: 0 6px;
    font-size: 12px;
    color: #00bf63;
}

/* Button */
.volunteer-form button {
    margin: 40px auto 0;
    display: block;
}

/* Trust */
.volunteer-trust {
    margin-top: 60px;
    text-align: center;
}

.volunteer-trust p {
    font-size: 14px;
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .volunteer-areas {
        grid-template-columns: repeat(2, 1fr);
    }

    .volunteer-form .form-grid {
        grid-template-columns: 1fr;
    }

    .input-group.full {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .volunteer-hero h1 {
        font-size: 34px;
    }

    .volunteer-hero p {
        font-size: 15px;
    }

    .volunteer-container {
        padding: 60px 15px;
    }

    .volunteer-form-wrapper {
        padding: 35px 20px;
    }

    .volunteer-areas {
        grid-template-columns: 1fr;
    }
}
