.sme-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px 120px;
    background: rgba(0, 0, 0, 0.75);
}

.page-intro {
    text-align: center;
    margin-bottom: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-intro h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 32px 0 16px 0;
    font-family: 'Onest', sans-serif;
    letter-spacing: -0.5px;
}

.page-intro p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0;
    font-family: 'Onest', sans-serif;
    line-height: 1.6;
}

.mod-section {
    margin-bottom: 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 80px 0;
}

.section-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.text-block {
    margin-bottom: 40px;
}

.text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #c0c0c0;
    font-family: 'Onest', sans-serif;
    margin: 0;
}

.image-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.grid-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.image-showcase {
    margin-bottom: 40px;
}

.showcase-large {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.showcase-small {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.download-container {
    display: flex;
    justify-content: center;
    padding: 0px 0px 60px 0px;
}

.mod-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mod-download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(4px);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.mod-download-btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .sme-container {
        padding: 80px 30px 100px;
    }

    .page-intro h1 {
        font-size: 3rem;
    }

    .section-divider {
        margin: 60px 0;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sme-container {
        padding: 70px 20px 80px;
    }

    .page-intro {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .page-intro h1 {
        font-size: 2.4rem;
    }

    .page-intro p {
        font-size: 1.08rem;
    }

    .section-divider {
        margin: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .text-block p {
        font-size: 1.05rem;
    }

    .image-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-img {
        height: 280px;
    }

    .showcase-large {
        height: 320px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase-small {
        height: 260px;
    }

    .mod-download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .sme-container {
        padding: 50px 15px 60px;
    }

    .page-intro {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .page-intro h1 {
        font-size: 2rem;
    }

    .page-intro p {
        font-size: 1rem;
    }

    .section-divider {
        margin: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .text-block {
        margin-bottom: 30px;
    }

    .text-block p {
        font-size: 1rem;
    }

    .grid-img {
        height: 240px;
    }

    .showcase-large {
        height: 280px;
        margin-bottom: 16px;
    }

    .showcase-small {
        height: 220px;
    }

    .mod-download-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}