/* Membership Intro Section */
.membership-intro {
    padding: 80px 20px 30px 20px;
}

.membership-intro h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 110px;
    color: #333;
    line-height: 1.4;
}

.membership-intro-sub-box {
    max-width: 1000px;
    margin: 0 auto;
}

.membership-intro-sub-box h3 {
    text-align: center;
    margin: 70px 0px 40px;
    font-weight: bold;
    font-size: 33px;
    color: #333;
    line-height: 1.3;
}

.membership-intro-sub-box .desc-box {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    padding: 0px 30px;
}

/* What makes the price higher? Section */
.membership-services {
    padding: 0px 20px;
}

.membership-services h2 {
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    background-color: #f4ecf7;
    padding: 15px 30px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 54px;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.services-column-left {
    justify-content: flex-start;
}

.services-column-right {
    justify-content: center;
}

.service-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 9px;
}

.service-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}

.service-title {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    padding-top: 10px;
}

/* Questions Section */
.membership-questions {
    padding: 80px 20px;
    background-color: #fff;
}

.membership-questions .wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.question-item {
    margin-bottom: 50px;
}

.question-item:last-child {
    margin-bottom: 0;
}

.question-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.question-title-large {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.4;
}

.question-highlight {
    padding-top: 60px;
}

.question-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.membership-benefits-img {
    max-width: 980px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-intro {
        padding: 60px 20px;
    }

    .membership-intro h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .membership-intro-sub-box h3 {
        font-size: 24px;
        margin: 50px 0px 30px;
    }

    .membership-intro-sub-box .desc-box {
        font-size: 15px;
        line-height: 1.7;
    }

    .membership-services {
        padding: 60px 20px;
    }

    .membership-services h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .services-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }

    .services-column-right {
        padding-top: 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-title {
        font-size: 15px;
    }

    .membership-questions {
        padding: 60px 20px;
    }

    .question-item {
        margin-bottom: 40px;
    }

    .question-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .question-title-large {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .question-highlight {
        margin-top: 50px;
        padding-top: 50px;
    }

    .question-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .membership-intro {
        padding: 40px 15px;
    }

    .membership-intro h2 {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .membership-intro-sub-box h3 {
        font-size: 20px;
        margin: 40px 0px 25px;
    }

    .membership-intro-sub-box .desc-box {
        font-size: 14px;
        line-height: 1.6;
    }

    .membership-services {
        padding: 40px 15px;
    }

    .membership-services h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .services-container {
        padding: 20px 15px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-title {
        font-size: 14px;
    }

    .membership-questions {
        padding: 40px 15px;
    }

    .question-item {
        margin-bottom: 35px;
    }

    .question-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .question-title-large {
        font-size: 19px;
        margin-bottom: 35px;
    }

    .question-highlight {
        margin-top: 40px;
        padding-top: 40px;
    }

    .question-text {
        font-size: 14px;
        line-height: 1.6;
    }
}
