/**
 * Services & Dual Advantage Section Styles
 * Desktop: node-id=2109-30134
 * Mobile: node-id=2109-30430
 */

.services-dual-advantage-section {
    padding: 0 120px;
    margin: 0 auto;
}

.services-dual-advantage-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.services-dual-advantage-title {
    font-family: 'IvyOra Display', serif;
    font-size: 32px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    color: #ed6a59;
    margin: 0;
}

.services-dual-advantage-title strong {
    font-weight: 700;
    font-style: normal;
}

/* Main Content Area */
.services-dual-advantage-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

/* Text Content */
.services-dual-advantage-text {
    flex: 1 0 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #403936;
}

.services-intro {
    margin: 0;
}

.services-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-list-heading {
    margin: 0;
    font-weight: 400;
}

.services-list {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

.service-item {
    margin-bottom: 8px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item strong {
    font-weight: 700;
}

/* Illustration */
.services-dual-advantage-illustration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper {
    width: 403px;
    height: 410px;
    background-color: #ebd3c7;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.illustration-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: none;
}

/* Footer Container */
.services-dual-advantage-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    align-items: center;
}

.footer-decorative-element {
    flex-shrink: 0;
    width: 417px;
    height: 63px;
    background-color: #ed6a59;
    border-radius: 193.56px 0 0 193.56px;
}

.footer-text {
    flex: 1 0 400px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #403936;
    margin: 0;
}

/* Mobile Styles (Below 1200px) */
@media (max-width: 1199px) {
    .services-dual-advantage-section {
        padding: 0 60px;
    }

    .services-dual-advantage-container {
        gap: 40px;
    }

    .services-dual-advantage-title {
        font-size: 24px;
    }

    .services-dual-advantage-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-dual-advantage-text {
        flex: 1 0 auto;
        min-width: 100%;
    }

    .services-dual-advantage-illustration {
        width: 100%;
    }

    .illustration-wrapper {
        width: 100%;
        max-width: 403px;
        aspect-ratio: 403 / 410;
        height: auto;
    }

    .services-dual-advantage-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-decorative-element {
        width: 111.65px;
        height: 66px;
        border-radius: 106.458px 0 0 106.458px;
    }

    .footer-text {
        flex: 1 0 auto;
        min-width: 100%;
    }
}

/* Tablet Styles (600px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .services-dual-advantage-illustration {
        display: flex;
        justify-content: center;
    }

    .illustration-wrapper {
        width: 100%;
        max-width: 500px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {
    .services-dual-advantage-section {
        padding: 0 16px;
    }

    .services-dual-advantage-container {
        gap: 40px;
    }

    .services-dual-advantage-content {
        gap: 32px;
    }

    .illustration-wrapper {
        width: 100%;
        max-width: none;
    }

    .footer-decorative-element {
        width: 100px;
        height: 60px;
    }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
