/* Services Approach Section Styles */
.services-approach-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
}

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

.services-approach-intro {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-approach-title {
    font-family: 'IvyOra Display', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #005b68;
    margin-bottom: 0;
    line-height: normal;
}

.services-approach-title em,
.services-approach-title-italic {
    font-weight: 500;
    font-style: italic;
}

.services-approach-description {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #403936;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: normal;
}

.services-approach-description p {
    margin-bottom: 0;
}

.services-approach-description ul {
    list-style: disc;
    margin-left: 0;
    padding-left: 30px;
    margin-bottom: 0;
}

.services-approach-description li {
    margin-bottom: 0;
}

.services-approach-bold {
    font-weight: bold;
}

.services-approach-subtitle {
    font-weight: bold;
    margin-bottom: 0;
}

.services-approach-cards {
    position: relative;
    gap: 24px;
}

@media (max-width: 1200px) {
    .services-approach-cards {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .services-approach-cards {
        gap: 24px;
    }
}

.services-card-column {
    /* No display:contents, let JS handle layout */
}

.services-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    height: auto;
}

.services-card-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.services-card-header-orange {
    background-color: #ed6a59;
}

.services-card-header-orange h4 {
    color: #fff;
}

.services-card-header-light-orange {
    background-color: #eed1cc;
    color: #403936;
}

.services-card-header-light-orange h4 {
    color: #403936;
}

.services-card-header-light-green {
    background-color: #769fb0;
}

.services-card-header-light-green h4 {
    color: #fff;
}

.services-card-header-dark-green h4 {
    color: #fff;
}

.services-card-header-dark-green {
    background-color: #005b68;
}

.services-card-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex: 1;
    padding: 0;
    margin-bottom: 0;
}

.services-card-link {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    text-decoration: underline;
    color: inherit;
}

.services-card-content {
    padding: 16px 16px 24px;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.services-card-expanded-block {
    opacity: 0;
    max-height: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card.expanded .services-card-expanded-block {
    opacity: 1;
    max-height: 1000px;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card-collapsed-list {
    opacity: 1;
    max-height: 1000px;
    padding-left: 20px;
    margin: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card.expanded .services-card-collapsed-list {
    opacity: 0;
    max-height: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card-expanded-block ul {
    list-style: disc inside;
    margin: 0;
    padding: 0 0 0 20px;
}

.services-card-expanded-block li {
    margin-left: 0;
    position: static;
}

.services-card-expanded-block li:before {
    display: none;
}

.services-card-expanded-block .item-label strong {
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
}

.services-card-expanded-block .item-desc-text {
    font-weight: 400;
    font-family: 'IBM Plex Sans', sans-serif;
}

.services-card-expanded-block .card-title-label {
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #403936;
}

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

    .services-approach-container {
        gap: 40px;
    }

    .services-approach-intro {
        text-align: left;
    }

    .services-approach-description ul {
        padding-left: 5px;
    }

    .services-approach-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .services-approach-cards {
        gap: 24px;
    }

    .services-card-column {
        gap: 24px;
    }

    .services-card {
        /* No width:100% or margin:0 auto; JS sets width/position */
    }
}

@media (max-width: 767px) {
    .services-approach-section {
        padding: 0 24px;
    }

    .services-approach-title {
        font-size: 20px;
    }

    .services-approach-cards {
        flex-direction: column;
        gap: 24px;
    }

    .services-approach-description {
        font-size: 14px;
    }

    .services-card-title,
    .services-card-link,
    .services-card-content ul {
        font-size: 14px;
    }
}
