/* ===== Base Styles ===== */
.saltcommunity {
    font-family: 'Nunito', sans-serif;
    color: #033f3f;
    background: white;
    min-height: 100vh;
    padding: 40px 20px;
    margin-bottom: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Support Title ===== */
.support-title {
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #007c7a;
    margin: 60px 0 40px 0;
    line-height: 1.2;
}

/* ===== Content Section ===== */
.saltcommunity .content-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.saltcommunity .content-section p {
    color: #33477d;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.saltcommunity .content-section p:last-child {
    margin-bottom: 0;
}

.salt-community-img {
    text-align: center;
    margin-top: 30px;
}

.saltcommunity .content-section img {
    width: 50%;
    border-radius: 30px;
}

/* ===== Boxes Section ===== */
.saltcommunity .boxes-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.saltcommunity .box {
    flex: 1;
    background: #33477d;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saltcommunity .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.saltcommunity .box h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.saltcommunity .box p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.saltcommunity .box p:last-child {
    margin-bottom: 0;
}

/* ===== Image Box Styling ===== */
.saltcommunity .image-box {
    background: transparent;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    border-radius: 25px;
}

.saltcommunity .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.3s ease;
    display: block;
}

.saltcommunity .image-box:hover img {
    transform: scale(1.05);
}

/* ===== CTA Section ===== */
.saltcommunity .cta-section {
    text-align: center;
    margin-top: 40px;
}

.saltcommunity .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #33477d 0%, #007c7a 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.saltcommunity .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

/* ===== Tablet Responsive (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .support-title {
        font-size: 2.2rem;
        margin: 50px 0 35px 0;
    }

    .saltcommunity .content-section {
        padding: 35px;
    }

    .saltcommunity .boxes-section {
        gap: 20px;
    }

    .saltcommunity .box {
        padding: 25px;
    }

    .saltcommunity .box h2 {
        font-size: 1.6rem;
    }

    .saltcommunity .content-section img {
        width: 60%;
    }
}

/* ===== Mobile Responsive (768px and below) ===== */
@media (max-width: 768px) {
    .saltcommunity {
        padding: 20px 10px;
        margin-bottom: 100px;
    }

    .container {
        padding: 0 15px;
    }

    /* Title Mobile */
    .support-title {
        font-size: 1.8rem;
        margin: 40px 0 30px 0;
    }

    /* Content Section Mobile */
    .saltcommunity .content-section {
        padding: 25px;
        margin-bottom: 30px;
    }

    .saltcommunity .content-section p {
        font-size: 1.2rem;
    }

    .saltcommunity .content-section img {
        width: 80%;
    }

    /* Boxes Section Mobile */
    .saltcommunity .boxes-section {
        flex-direction: column;
        gap: 20px;
    }

    .saltcommunity .box {
        padding: 25px;
    }

    .saltcommunity .box h2 {
        font-size: 1.6rem;
    }

    .saltcommunity .box p {
        font-size: 1.2rem;
    }

    .saltcommunity .image-box {
        height: 300px;
    }

    .saltcommunity .cta-button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {
    .saltcommunity {
        padding: 0;
    }

    .container {
        padding: 0 10px;
    }

    .support-title {
        font-size: 1.6rem;
        margin: 30px 0 25px 0;
    }

    .saltcommunity .content-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .saltcommunity .content-section p {
        font-size: 1.2rem;
    }

    .saltcommunity .content-section img {
        width: 90%;
    }

    .saltcommunity .boxes-section {
        gap: 20px;
    }

    .saltcommunity .box {
        padding: 20px;
    }

    .saltcommunity .box h2 {
        font-size: 1.4rem;
    }

    .saltcommunity .box p {
        font-size: 1.2rem;
    }

    .saltcommunity .image-box {
        height: 250px;
    }

    .saltcommunity .cta-button {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
}

/* ===== Large Desktop Optimization ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
        padding: 0 40px;
    }

    .support-title {
        font-size: 2.8rem;
        margin: 80px 0 50px 0;
    }

    .saltcommunity .content-section {
        padding: 60px;
        margin-bottom: 60px;
    }

    .saltcommunity .content-section p {
        font-size: 1.3rem;
    }

    .saltcommunity .boxes-section {
        gap: 40px;
        margin-bottom: 60px;
    }

    .saltcommunity .box {
        padding: 40px;
    }

    .saltcommunity .box h2 {
        font-size: 2rem;
    }

    .saltcommunity .box p {
        font-size: 1.3rem;
    }

    .saltcommunity .content-section img {
        width: 40%;
    }

    .saltcommunity .cta-button {
        font-size: 1.3rem;
        padding: 18px 45px;
    }
} 