label.form-label {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

body,
.form-control,
.form-label {
    font-family: 'Quicksand', Arial, sans-serif;
}

.camp-title {
    font-family: 'Fredoka', cursive;
    color: #48bd92;
    font-size: 2.3rem;
    letter-spacing: 1.5px;
    text-shadow: 1px 3px 8px #ffeead66;
    text-align: center;
    line-height: 1.1;
}

.camp-card {
    border-radius: 30px;
    box-shadow: 0px 8px 30px -10px #46b67d22;
    border: none;
    background: #fffae0;
    transition: box-shadow 0.2s;
}

.camp-card:focus-within {
    box-shadow: 0 0 0 3px #48bd92;
}

.payment-summary {
    font-family: 'Quicksand', Arial, sans-serif;
    color: #24449d;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px dashed #d8e9d7;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #24449d;
}

.summary-row strong {
    color: #009c63;
    white-space: nowrap;
    font-size: 1.1rem;
}

.payment-method-card {
    background: #fffef4;
    border-radius: 22px;
    padding: 1.4rem;
    border: 2px solid #eef7f2;
    transition: all 0.2s ease;
    box-shadow: 0px 6px 20px -12px #46b67d33;
}

.payment-method-card:hover {
    border-color: #48bd92;
    transform: translateY(-2px);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.method-header h5 {
    font-family: 'Fredoka', cursive;
    color: #24449d;
    margin: 0;
    font-size: 1.25rem;
}

.fee-text {
    color: #2d9b68;
    font-size: 0.95rem;
}

.method-total {
    font-family: 'Fredoka', cursive;
    font-size: 1.7rem;
    color: #fbab18;
    white-space: nowrap;
    text-align: right;
}

.camp-btn {
    background: linear-gradient(90deg, #fbab18 30%, #48bd92 80%);
    font-family: 'Fredoka', cursive;
    color: #fff;
    font-size: 1.08rem;
    border-radius: 14px;
    border: none;
    padding: 0.9rem 1.4rem;
    box-shadow: 0 4px 16px -6px #2d9b68;
    transition: background 0.2s, transform 0.1s;
}

.camp-btn:hover {
    background: #2d9b68;
    color: #fff;
    transform: translateY(-2px) scale(1.02);
}

.payment-note {
    font-size: 0.92rem;
    color: #24449d;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 767px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .camp-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .camp-card {
        border-radius: 24px;
        padding: 1.3rem !important;
    }

    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.8rem 0;
    }

    .summary-row strong {
        font-size: 1.2rem;
    }

    .payment-method-card {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .method-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .method-total {
        text-align: left;
        font-size: 1.8rem;
    }

    .camp-btn {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
        margin-top: 1rem;
    }

    .payment-note {
        font-size: 0.88rem;
    }
}