.service-section-9 {
    padding: var(--section-pad-y) 0;
}

.service-section-9 h2 {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    padding: 0 130px;
    margin-bottom: 48px;
}

.service-section-9__faqs {
    max-width: 900px;
    margin: 0 auto;
}

.service-section-9 .ea-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 5px !important;
}

.service-section-9 .ea-header a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* Hide original icon */
.service-section-9 .ea-header .ea-expand-icon {
    display: none !important;
}

/* Add custom chevron */
.service-section-9 .ea-header a::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 16px;
}

/* Rotate chevron when expanded */
.service-section-9 .ea-header a[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.service-section-9 .sp-ea-single {
    border: none !important;
    margin-bottom: 16px !important;
    background: #F8F8F8 !important;
}

.service-section-9 .ea-body {
    padding: 10px 20px 20px !important;
}

@media (max-width: 991px) {
    .service-section-9 h2 {
        font-size: 36px;
        margin-bottom: 32px;
    }
}

@media (max-width: 640px) {
    .service-section-9 h2 {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 24px;
    }
}