/* ========== WHY US PARTNER LOGOS ========== */
.why-us-partner-logos {
    padding: 30px 100px;
    background-color: #fff;
    width: 100%;
}

.why-us-logo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.why-us-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 80px;
}

.why-us-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.why-us-logo-box img.why-us-loaded {
    opacity: 1;
}

@media (max-width: 1200px) {
    .why-us-partner-logos {
        padding: 30px 50px;
    }
}

@media (max-width: 992px) {
    .why-us-logos-row {
        justify-content: center;
        gap: 30px;
    }
    .why-us-logo-box {
        width: calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .why-us-partner-logos {
        padding: 20px 20px;
    }
    .why-us-logo-box {
        width: calc(50% - 20px);
        height: 70px;
    }
}

@media (max-width: 480px) {
    .why-us-logo-box {
        width: 100%;
        height: 60px;
    }
}


/* ========== WHY CHOOSE US SECTION ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.why-choose-section {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-section h2 {
    font-size: 36px;
    color: #304068;
    margin-bottom: 10px;
}

.why-choose-section h3 {
    color: #f26b4d;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}

.description {
    text-align: center;
    color: #444;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0;
    flex-wrap: wrap;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-section img {
    width: 100%;
    max-width: 450px;
}

.text-section {
    flex: 1;
    text-align: left;
}

.text-section h3 {
    color: #304068;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.text-section p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .text-section,
    .image-section {
        width: 100%;
        padding: 0 10px;
    }

    .text-section h3 {
        text-align: center;
        font-size: 24px;
    }

    .text-section p {
        font-size: 15px;
    }

    .why-choose-section h2 {
        font-size: 28px;
    }

    .why-choose-section h3 {
        font-size: 20px;
    }

    .container {
        padding: 30px 16px;
        
    }

    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }
}


/* ========== DIGIDOC SECTION ========== */
.digidoc-section {
    width: 100%;
    background-color: #FFEDE7;
    margin-top: 0;
}

.digidoc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.digidoc-content-wrapper {
    flex: 1;
    max-width: 500px;
}

.digidoc-section-title {
    color: #2A4365;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.digidoc-section-description {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.digidoc-image-wrapper {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.digidoc-illustration {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .digidoc-container {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .digidoc-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 40px;
    }

    .digidoc-content-wrapper,
    .digidoc-image-wrapper {
        max-width: 100%;
    }

    .digidoc-section-title {
        font-size: 26px;
    }

    .digidoc-section-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .digidoc-container {
        padding: 24px 16px;
    }

    .digidoc-section-title {
        font-size: 22px;
    }

    .digidoc-section-description {
        font-size: 14px;
    }
}
