.camp-intro {
    width: 95%;
    margin: 20px auto;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: justify;
    font-family: 'Oswald', sans-serif;
}

.camp-intro strong {
    color: #6D0D1B;
    font-size: 1.8rem;
}

.camp-box {
    width: 95%;
    margin: 20px auto;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.camp-urgency {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.camp-content {
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: justify;
}

.camp-content h2 {
    color: #6D0D1B;
    margin-bottom: 10px;
}

.camp-desc {
    font-size: 1.2rem;
    font-weight: 500;
}

.camp-list {
    margin-top: 15px;
    padding-left: 20px;
}

.camp-list li {
    margin-bottom: 8px;
}

.camp-logo {
    text-align: center;
    margin: 30px 0;
}

.camp-logo img {
    width: 200px;
    max-width: 100%;
}

.camp-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 12px 25px;
    background: #6D0D1B;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.camp-btn:hover {
    background: #4e0913;
}

/* MOBILE */
@media(max-width: 768px){
    .camp-intro {
        width: 100%;
        font-size: 1.1rem;
        text-align: left;
    }

    .camp-box {
        width: 100%;
        padding: 20px;
    }

    .camp-content {
        font-size: 1.05rem;
        text-align: left;
    }
}