/* ===== MIDDLE CONTENT ===== */
.middle-content {
    padding: 20px 24px;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
}

.middle-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.middle-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.middle-content p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.middle-content .divider {
    width: 60px;
    height: 4px;
    background: #39B54A;
    margin: 40px auto;
    border-radius: 2px;
}

/* ===== TABLET (max 768px) ===== */
@media (max-width: 768px) {
    .middle-content {
        padding: 15px 24px;
        text-align: center !important;
    }

    .middle-content .container {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        transform: none !important;
    }

    .middle-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 20px;
        text-align: center !important;
    }

    .middle-content p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center !important;
    }

    .middle-content .divider {
        margin: 30px auto;
    }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
    .middle-content {
        padding: 15px 16px;
    }

    .middle-content h2 {
        font-size: 1.5rem;
    }

    .middle-content p {
        font-size: 0.95rem;
    }
}