/* style/index-review-b52club.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-grey: #f1f3f5;
    --border-light: #e0e0e0;
}

.page-index-review-b52club {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark); /* Default text color for light backgrounds */
    background-color: var(--background-grey);
}

.page-index-review-b52club__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    background: linear-gradient(135deg, var(--primary-color), #0D3B66);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-index-review-b52club__hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-index-review-b52club__hero-content {
    flex: 1;
    text-align: left;
    max-width: 60%;
}

.page-index-review-b52club__main-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-index-review-b52club__sub-heading {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-review-b52club__sub-heading .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-index-review-b52club__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-b52club__cta-button:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-b52club__hero-image-wrapper {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-review-b52club__hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-index-review-b52club__review-section {
    padding: 60px 20px;
    background-color: var(--background-grey);
    color: var(--text-color-dark);
}

.page-index-review-b52club__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-index-review-b52club__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.page-index-review-b52club__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-index-review-b52club__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-review-b52club__sub-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-index-review-b52club p {
    margin-bottom: 15px;
    font-size: 17px;
}

.page-index-review-b52club p .highlight {
    font-weight: bold;
    color: var(--primary-color);
}

.page-index-review-b52club__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-review-b52club__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 17px;
}

.page-index-review-b52club__list li {
    margin-bottom: 8px;
    color: var(--text-color-dark);
}

.page-index-review-b52club__list--check {
    list-style: none;
    padding-left: 0;
}

.page-index-review-b52club__list--check li::before {
    content: '✅';
    margin-right: 10px;
    color: green;
}

.page-index-review-b52club__list--cross {
    list-style: none;
    padding-left: 0;
}

.page-index-review-b52club__list--cross li::before {
    content: '❌';
    margin-right: 10px;
    color: red;
}

.page-index-review-b52club__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.page-index-review-b52club__button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index-review-b52club__button--primary:hover {
    background-color: #FFC107;
    border-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-index-review-b52club a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-review-b52club a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-b52club__pros-cons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.page-index-review-b52club__pros, .page-index-review-b52club__cons {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.page-index-review-b52club__pros-title {
    color: #28a745;
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.page-index-review-b52club__cons-title {
    color: #dc3545;
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.page-index-review-b52club__step-list {
    list-style: none;
    padding-left: 0;
}

.page-index-review-b52club__step-list li {
    margin-bottom: 15px;
    font-size: 17px;
    position: relative;
    padding-left: 35px;
}

.page-index-review-b52club__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* FAQ Styles */
.page-index-review-b52club__faq-section {
    margin-top: 40px;
}

.page-index-review-b52club__faq-list {
    margin-top: 20px;
}

.page-index-review-b52club__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-index-review-b52club__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-index-review-b52club__faq-item.active .page-index-review-b52club__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-index-review-b52club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-index-review-b52club__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-index-review-b52club__faq-question:active {
    background: #eeeeee;
}

.page-index-review-b52club__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-index-review-b52club__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-index-review-b52club__faq-item.active .page-index-review-b52club__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-b52club__hero-content {
        max-width: 55%;
    }
    .page-index-review-b52club__hero-image-wrapper {
        max-width: 45%;
    }
    .page-index-review-b52club__main-heading {
        font-size: 36px;
    }
    .page-index-review-b52club__sub-heading {
        font-size: 18px;
    }
    .page-index-review-b52club__cta-button {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-index-review-b52club__section-title {
        font-size: 28px;
    }
    .page-index-review-b52club__sub-title {
        font-size: 22px;
    }
    .page-index-review-b52club p, .page-index-review-b52club__list li, .page-index-review-b52club__step-list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-index-review-b52club {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-index-review-b52club__hero-section {
        padding-top: 160px !important; /* Mobile: Adjust based on mobile fixed header height */
        padding-bottom: 40px;
    }
    .page-index-review-b52club__hero-container {
        flex-direction: column;
        gap: 30px;
    }
    .page-index-review-b52club__hero-content {
        max-width: 100%;
        text-align: center;
    }
    .page-index-review-b52club__hero-image-wrapper {
        max-width: 100%;
    }
    .page-index-review-b52club__main-heading {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .page-index-review-b52club__sub-heading {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-index-review-b52club__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: auto; /* Allow button to shrink */
    }
    .page-index-review-b52club__review-section {
        padding: 30px 15px;
    }
    .page-index-review-b52club__card {
        padding: 25px 20px;
    }
    .page-index-review-b52club__section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .page-index-review-b52club__sub-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-index-review-b52club p, .page-index-review-b52club__list li, .page-index-review-b52club__step-list li {
        font-size: 15px;
    }
    .page-index-review-b52club__pros-cons {
        flex-direction: column;
        gap: 20px;
    }
    .page-index-review-b52club__pros, .page-index-review-b52club__cons {
        padding: 20px;
    }
    .page-index-review-b52club__pros-title, .page-index-review-b52club__cons-title {
        font-size: 20px;
    }
    .page-index-review-b52club__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-index-review-b52club__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-index-review-b52club__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    .page-index-review-b52club__faq-answer {
        padding: 0 15px;
    }
    .page-index-review-b52club__faq-item.active .page-index-review-b52club__faq-answer {
        padding: 15px !important;
    }
    /* Mobile image adaptation */
    .page-index-review-b52club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-review-b52club__section,
    .page-index-review-b52club__card,
    .page-index-review-b52club__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-b52club__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-review-b52club__main-heading {
        font-size: 26px;
    }
    .page-index-review-b52club__sub-heading {
        font-size: 15px;
    }
    .page-index-review-b52club__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-index-review-b52club__section-title {
        font-size: 22px;
    }
    .page-index-review-b52club__sub-title {
        font-size: 18px;
    }
    .page-index-review-b52club p, .page-index-review-b52club__list li, .page-index-review-b52club__step-list li {
        font-size: 14px;
    }
    .page-index-review-b52club__faq-question h3 {
        font-size: 14px;
    }
    .page-index-review-b52club__faq-toggle {
        font-size: 22px;
        width: 24px;
        height: 24px;
    }
}