/* ===================================
   CREATE JEJU - Index (Home) Styles
   Page-specific styles extracted from style.css
   ================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 71px);
    margin-top: 71px;
    background: #F5F0E0;
    padding: 90px 64px 100px;
    padding-top: calc(90px + 140px);
}

.hero-logo-text {
    position: absolute;
    bottom: 100px;
    left: -21px;
    font-size: 210px;
    font-weight: 900;
    color: #000;
    letter-spacing: 15px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    margin-top: 160px;
}

.hero-title span {
    display: block;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    z-index: 99999;
}

.hero-image {
    position: absolute;
    background: #D3D3D3;
    background-size: cover;
    background-position: center;
}

.hero-image-1 {
    top: 135px;
    left: -82px;
    width: 297px;
    height: 292px;
    background-image: url("/resources/Rectangle\ 40586.png");
    animation: slideLeftToRight 5s ease-out forwards;
}

.hero-image-2 {
    top: -350px;
    left: 400px;
    width: 362px;
    height: 225px;
    background-image: url("/resources/Rectangle\ 40583.png");
    animation: slideTopToBottom 5s ease-out 1s forwards;
}

.hero-image-3 {
    top: 60px;
    right: 148px;
    width: 530px;
    height: 320px;
    animation: slideInFromRight 1s ease-out 3s backwards;
    cursor: pointer;
    border-left: 10px solid #000;
    border-right: 10px solid #000;
}

.hero-image-3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-3-overlay.show {
    opacity: 1;
}

.hero-image-3:hover .hero-image-3-overlay {
    opacity: 1;
}

.video-play-btn {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.hero-image-3-desc {
    font-size: 13px;
    color: #000;
    background-color: #fee500;
    height: 40px;
    margin-top: -5px;
    text-align: center;
    line-height: 38px;
    position: relative;
    z-index: 2;
    display: none;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 900px;
    top: 50%;
    transform: translateY(-50%);
}

.video-modal-close {
    position: absolute;
    top: -20px;
    right: -40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #ff7632;
}

.video-modal video {
    width: 100%;
    height: auto;
}


.hero-episode {
    font-size: 13px;
}

.episode-subtitle {
    color: #A68B74;
}

.hero-image-4 {
    bottom: 0px;
    right: -220px;
    width: 220px;
    height: 272px;
    background-image: url("/resources/Rectangle\ 40587.png");
    animation: slideRightToLeft 5s ease-out 2s forwards;
}

.mouse-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 14px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 17.5px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 2px;
    height: 8px;
    background: #000;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        top: 7px;
        opacity: 1;
    }

    50% {
        top: 15px;
        opacity: 0.5;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(calc(100vw + 300px));
        opacity: 0;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideTopToBottom {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateY(calc(100vh + 300px));
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(calc(-100vw - 300px));
        opacity: 0;
    }
}

@keyframes revealFromRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes revealDivFromRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100vw);
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: 190px 0px 100px;
    background: #F5F0E0;
}

.services-intro h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 100px;
    margin-bottom: 40px;
    padding-left: 54px;
}

.services-intro h2 span {
    display: block;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 80px;
    padding-left: 54px;
}

.service-banners {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.banner {
    height: 130px;
    display: flex;
    align-items: center;
    padding: 0 64px 0 0;
    justify-content: end;
    gap: 10px;
    clip-path: inset(0 0 0 100%);
}

.services.animate .banner {
    animation: revealDivFromRight 1s ease-out forwards;
}

.banner-orange {
    background: #FF7632;
    margin-left: 680px;
}

.banner-yellow {
    background: #FFAB58;
    margin-left: 340px;
}

.banner-light-yellow {
    background: #FFCB70;
}

.banner-icon {
    width: 66px;
    height: 66px;
}

.banner-text {
    font-size: 50px;
    font-weight: 600;
    line-height: 65px;
    color: #000;
}

.banner-subtitle {
    font-family: 'Made Mirage', sans-serif;
    font-size: 52px;
    font-style: italic;
    color: #FFFF81;
}

.banner-mice-box {
    width: 163px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/resources/Rectangle\ 40534.png");
    background-size: cover;
}

.mice-text {
    font-family: 'Made Mirage', sans-serif;
    font-size: 50px;
    font-style: italic;
    color: #FFF;
}

.services-footer {
    text-align: right;
    padding-right: 64px;
    position: absolute;
    top: 20px;
    right: 0;
}

.services-tagline {
    font-size: 13px;
    color: #FF7632;
}

/* With Section */
.with-section {
    position: relative;
    background: #201E1C;
    padding: 240px 64px 150px;
    color: #FFF;
}

.with-section2,
.with-section3 {
    position: relative;
    background: #201E1C;
    color: #FFF;
}

.with-bg {
    position: absolute;
    top: 460px;
    left: 50%;
    transform: translateX(-50%);
    width: 1052px;
    height: 1280px;
    background: rgba(74, 144, 226, 0.15);
    z-index: 1;
    background-image: url("/resources/with_bg.png");
    background-size: cover;
}

.with-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.with-symbol {
    width: 140px;
    height: 140px;
    margin: 0 auto 40px;
}

.with-title {
    margin-bottom: 200px;
}

.with-sub {
    font-family: 'Made Mirage', sans-serif;
    display: block;
    font-size: 120px;
    font-style: italic;
    font-weight: 500;
    line-height: 120px;
}

.with-main {
    display: block;
    font-size: 120px;
    font-weight: 600;
    line-height: 120px;
}

.with-services {
    display: flex;
    flex-direction: column;
    gap: 100px;
    text-align: left;
}

.with-service {
    padding-left: 100px;
    z-index: 2;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.with-section2.animate .with-service:nth-child(1) {
    animation: slideOutRight 3s ease-out forwards;
}

.with-section2.animate .with-service:nth-child(2) {
    animation: slideOutLeft 3s ease-out forwards;
}

.with-section2.animate .with-service:nth-child(3) {
    animation: slideOutRight 3s ease-out forwards;
}

.with-service:nth-child(2) {
    padding-left: 800px;
}

.with-service img {
    margin-left: 20px;
    vertical-align: bottom;
}

.service-name {
    font-size: 148px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
}

.mice-details {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 44px;
    font-weight: 500;
    margin-top: 30px;
    width: 680px;
}

.inline-wrapper {
    display: inline-block;
}

.bracket {
    font-size: 106px;
    font-weight: 300;
}

.mice-items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.mice-items .dot {
    font-size: 18px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-top: 20px;
}

.with-signature {
    text-align: center;
    margin-top: 200px;
}

.with-signature p {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.signature-sub {
    font-size: 20px;
    opacity: 0.5;
}

/* Detail Sections */
.detail-section {
    padding: 190px 0px 100px;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-flow: row;
}

.event-detail {
    background: #F5F0E0;
}

.mice-detail {
    background: #F5F0E0;
    border-top: 1px solid #DACFC3;
    border-bottom: 1px solid #DACFC3;
}

.tour-detail {
    background: #F5F0E0;
}

.detail-top-left {
    position: absolute;
    top: 40px;
    left: 0px;
    font-size: 13px;
}

.detail-top-right {
    position: absolute;
    top: 40px;
    right: 64px;
    font-size: 13px;
}

.detail-top-right img {
    vertical-align: super;
}

.detail-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.detail-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.detail-image img.slide-in {
    animation: slideInFromBottom 0.6s ease-out forwards;
}

.detail-image img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.detail-content {
    flex: 1;
    position: relative;
    height: 100%;
}

.detail-content ul {
    list-style: none;
    margin-top: 120px;
}

.detail-content ul li {
    border-bottom: 1px solid #DACFC3;
    padding-bottom: 10px;
    position: relative;
}

.detail-content ul li:not(.active) .detail-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
    padding-bottom: 0;
    pointer-events: none;
}

.detail-content ul li.active .detail-body {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in, padding 0.5s ease-in;
    padding-bottom: 50px;
}

.detail-body {
    padding-bottom: 50px;
}

.detail-label {
    font-size: 20px;
    color: #FF7632;
    display: block;
    margin-bottom: 20px;
}

.detail-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-title .title-arrow {
    width: 44px;
    height: auto;
    transition: transform 0.3s ease;
    margin-right: 70px;
}

.detail-content ul li:not(.active) .title-arrow {
    transform: rotate(180deg);
}

.detail-content ul li.active .title-arrow {
    transform: rotate(0deg);
}

.detail-description {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    margin-top: 120px;
    margin-bottom: 30px;
}

.detail-description-en {
    font-size: 15px;
    line-height: 22px;
    opacity: 0.5;
}

.detail-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s ease;
    position: absolute;
    right: 70px;
    bottom: 20px;
}

.detail-button:hover {
    background: #000;
    color: #FFF;
}

.detail-button:hover .button-arrow {
    filter: brightness(0) invert(1);
}

.detail-button .button-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
    transition: filter 0.3s ease;
}

.detail-logo {
    position: absolute;
    right: 64px;
    font-size: 13px;
}

/* Client Section */
.client-section {
    background: #FF7632;
    padding: 180px 0px 150px;
    overflow: hidden;
    position: relative;
    color: #FFF;
}

.client-symbol {
    width: 406px;
    height: 406px;
    position: absolute;
    right: 100px;
    top: 50px;
    background-image: url("/resources/client-symbol.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.client-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 80px;
    padding-left: 215px;
}

.client-title span {
    display: block;
}

.client-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #FFFF81;
    display: block;
    margin-bottom: 20px;
    padding-left: 215px;
}

.client-logos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-row-1 {
    animation: scroll-logos 40s linear infinite;
}

.logo-row-2 {
    animation: scroll-logos 40s linear infinite;
    animation-direction: reverse;
}

.logo-row-3 {
    animation-direction: reverse;
}

@keyframes scroll-logos {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-80px * 8 - 100px * 7), 0, 0);
    }
}

.client-logo {
    height: 80px;
    width: auto;
    object-fit: scale-down;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

/* Responsive */

.with-mobile {
    display: none;
}

.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1200px) {

    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-title {
        font-size: 32px;
        line-height: 45px;
    }

    .services-intro h2 {
        font-size: 60px;
        line-height: 75px;
    }

    .banner {
        padding: 0 40px;
    }

    .banner-text {
        font-size: 36px;
        line-height: 48px;
    }

    .banner-subtitle {
        font-size: 38px;
    }

    .with-sub,
    .with-main {
        font-size: 80px;
        line-height: 90px;
    }

    .service-name {
        font-size: 100px;
    }

    .mice-details {
        font-size: 32px;
    }

    .client-title {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (max-width: 768px) {

    .fp-table {
        justify-content: space-around;
    }

    .mouse-scroll {
        display: none;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 35px;
        text-align: center;
        margin-top: 140px;
        font-weight: 700;
    }

    .hero-images {
        z-index: 1;
    }

    .hero-logo-desc {
        color: #FF7632;
        font-family: Pretendard;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        position: absolute;
        bottom: 160px;
    }

    .hero-logo-text {
        font-size: 55px;
        letter-spacing: 0px;
        left: -15px;
    }

    .hero-image-1 {
        top: 324px;
        left: 400px;
        width: 135px;
        height: 132px;
        background-image: url("/resources/Rectangle\ 40586.png");
        animation: slideInFromLeft 5s ease-out;
        z-index: 1;
    }

    @keyframes slideInFromLeft {
        0% {
            transform: translateX(-400px);
            opacity: 0;
        }

        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .hero-image-2 {
        top: -150px;
        left: -20px;
        width: 148px;
        height: 92px;
        background-image: url("/resources/Rectangle\ 40583.png");
        animation: slideTopToBottom 5s ease-out 1s forwards;
    }

    @keyframes slideTopToBottom {
        0% {
            transform: translateY(-200px);
            opacity: 0;
        }

        30% {
            opacity: 1;
        }

        70% {
            opacity: 1;
        }

        100% {
            transform: translateY(calc(100vh + 300px));
            opacity: 0;
        }
    }

    .hero-image-3 {
        top: 60px;
        right: 0px;
        width: 260px;
        height: 150px;
        animation: slideInFromRight 1s ease-out 3s backwards;
    }

    .hero-image-3-desc {
        font-size: 10px;
        height: 24px;
        margin-top: -5px;
        text-align: center;
        line-height: 22px;
    }

    .hero-image-4 {
        bottom: 80px;
        right: 400px;
        width: 116px;
        height: 144px;
        background-image: url("/resources/Rectangle\ 40587.png");
        animation: slideInFromRight 5s ease-out 1s backwards;
    }

    @keyframes slideInFromRight {
        0% {
            transform: translateX(400px);
            opacity: 0;
        }

        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .hero-episode {
        font-size: 10px;
    }

    .episode-subtitle {
        display: none;
    }

    .services-tagline {
        display: none;
    }

    .arrow-icon {
        padding-left: 0px;
    }

    .banner-orange {
        margin-left: 0px;
    }

    .banner-yellow {
        margin-left: 0px;
    }

    .banner-light-yellow {
        margin-left: 0px;
    }

    .services {
        padding: 80px 20px 0px;
    }

    .service-banners {
        margin: 0 -20px;
    }

    .services-intro h2 {
        font-size: 28px;
        line-height: 38px;
        padding-left: 0px;
    }

    .banner {
        height: auto;
        padding: 10px;
        flex-wrap: nowrap;
        justify-content: start;
    }

    .banner-icon {
        width: 33px;
        height: 33px;
    }

    .banner-icon img {
        width: 33px;
        height: auto;
    }

    .banner-text {
        font-size: 16px;
        line-height: 32px;
        white-space: nowrap;
    }

    .banner-subtitle {
        font-size: 16px;
        white-space: nowrap;
    }

    .mice-text {
        font-size: 24px;
    }

    .banner-mice-box {
        height: auto;
    }

    .with-content {
        padding-top: 20px;
    }

    .with-symbol {
        width: 33px;
        height: 33px;
        margin: 0 auto 10px;
    }

    .with-symbol img {
        width: 33px;
        height: auto;
    }

    .with-title {
        margin-bottom: 50px;
    }

    .with-section {
        padding: 100px 20px;
        justify-content: start;
    }

    .with-sub,
    .with-main {
        font-size: 40px;
        line-height: 50px;
    }

    .with-bg {
        position: absolute;
        top: 143px;
        left: 50%;
        transform: translateX(-50%);
        width: 315px;
        height: 380px;
        background: rgba(74, 144, 226, 0.15);
        z-index: 1;
        background-image: url("/resources/with_bg.png");
        background-size: cover;
    }

    .with-mobile {
        display: block;
        margin-top: 10px;
    }

    .with-section2,
    .with-section3 {
        display: none;
    }

    .with-services {
        display: flex;
        flex-direction: column;
        gap: 0px;
        text-align: left;
    }

    .with-service:nth-child(2) {
        padding-left: 100px;
    }

    .with-service {
        padding-left: 0px;
        z-index: 2;
        transition: transform 1s ease-out, opacity 1s ease-out;
    }

    .with-section.animate .with-service:nth-child(1) {
        animation: slideOutRight 3s ease-out forwards;
    }

    .with-section.animate .with-service:nth-child(2) {
        animation: slideOutLeft 3s ease-out forwards;
    }

    .with-section.animate .with-service:nth-child(3) {
        animation: slideOutRight 3s ease-out forwards;
    }

    .with-service img {
        margin-left: 0px;
        vertical-align: bottom;
        width: 55px;
    }

    .bracket {
        font-size: 60px;
        font-weight: 300;
    }

    .mice-details .bracket img {
        height: 50px;
    }

    .mice-items {
        gap: 5px;
    }

    .mice-details {
        display: flex;
        align-items: center;
        gap: 0px;
        font-size: 24px;
        font-weight: 500;
        margin-top: 30px;
        width: 420px;
    }

    .service-name {
        font-size: 60px;
        white-space: nowrap;
    }

    .with-signature {
        text-align: center;
        margin-top: 20px;
    }

    .with-signature img {
        width: 26px;
    }

    .signature-sub {
        font-size: 13px;
    }

    .with-signature p {
        font-size: 28px;
    }

    .animated-banner {
        height: 60px;
        bottom: 0px;
        margin-left: -20px;
    }

    .banner-item {
        gap: 30px;
        padding: 0 30px 0 0;
        font-size: 24px;
    }

    .mice-inline .bracket {
        height: 40px;
    }

    .mice-inline .bracket img {
        height: 40px;
        vertical-align: super;
    }

    .mice-inline {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 500;
    }

    .detail-section {
        flex-direction: column;
        padding: 80px 0px;
    }

    .detail-content ul li {
        border-bottom: 0px;
    }

    .detail-text {
        padding: 50px 20px;
    }

    .detail-image {
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .detail-image img {
        width: 100%;
        height: auto;
        position: relative;
        object-fit: cover;
    }

    .detail-top-left {
        display: none;
    }

    .detail-top-right {
        display: none;
    }

    .detail-title {
        font-size: 40px;
        line-height: 60px;
    }

    .detail-label {
        font-size: 13px;
    }

    .detail-description {
        font-size: 15px;
        line-height: 25px;
    }

    .detail-description-en {
        font-size: 13px;
        line-height: 18px;
        opacity: 0.5;
    }

    /* Disable accordion on small screens and stack items */
    .detail-section.accordion-disabled .detail-content {
        width: 100%;
    }

    .detail-section.accordion-disabled .detail-content ul {
        margin-top: 20px;
    }

    .detail-section.accordion-disabled .detail-content ul li {
        padding: 20px 0;
    }

    .detail-section.accordion-disabled .detail-content ul li .detail-title {
        cursor: default;
    }

    .detail-section.accordion-disabled .detail-content ul li .title-arrow {
        display: none;
    }

    .detail-section.accordion-disabled .detail-content ul li .detail-body {
        max-height: none;
        opacity: 1;
        padding-bottom: 20px;
        pointer-events: auto;
        transition: none;
    }

    .detail-section.accordion-disabled .detail-description {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .detail-section.accordion-disabled .detail-button {
        position: static;
        margin-top: 20px;
        right: auto;
        bottom: auto;
        font-size: 15px;
    }

    .client-symbol {
        display: none;
    }

    .client-subtitle {
        padding-left: 20px;
        font-size: 13px;
    }

    .client-title {
        font-size: 28px;
        line-height: 42px;
        padding-left: 20px;
    }

    .client-section {
        padding: 40px 0px 60px;
    }

    .client-logos {
        margin-top: 180px;
        gap: 50px;
    }

    .client-logo {
        height: 40px;
    }

    .logo-row {
        gap: 60px;
    }
}