label.form-label {
    font-size: 1.1rem;
}

body,
.form-control,
.form-label {
    font-family: 'Quicksand', Arial, sans-serif;
}

.camp-title {
    font-family: 'Fredoka', cursive;
    color: #48bd92;
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    text-shadow: 1px 3px 8px #ffeead66;
}

.progress-camp {
    height: 2rem;
    background: #24449d;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-camp-bar {
    background: linear-gradient(90deg, #48bd92, #97d9ed);
    width: 50%;
    height: 100%;
    border-radius: 30px;
}

.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;
}

.camp-btn {
    background: linear-gradient(90deg, #fbab18 30%, #48bd92 80%);
    font-family: 'Fredoka', cursive;
    color: #fff;
    font-size: 1.15rem;
    border-radius: 14px;
    border: none;
    padding: 0.8rem 2.5rem;
    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.03);
}

.camp-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 25px;
   
}
label.form-label {
    display: block;
   margin-bottom: 5px;
}

/* Responsive Tweaks */
@media (max-width: 767px) {
    .camp-title {
        font-size: 2rem;
        text-align: center;
    }

    .camp-card {
        border-radius: 16px;
        margin: 0;
    }

    .camp-img {
        width: 100%;
        max-width: 280px; /* Increased from 180px to 280px */
        margin-bottom: 1rem;
    }

    .form-label,
    .form-control,
    .camp-btn {
        font-size: 1rem;
    }
}

}

}
