/* style/platforms-platform-b-review.css */
.page-platforms-platform-b-review {
    font-family: 'Arial', sans-serif;
    color: #e5d4b3; /* Light text for dark background */
    background-color: #1A2B4C; /* Primary dark blue background */
}

.page-platforms-platform-b-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-platforms-platform-b-review__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #2C426E);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    border-bottom: 2px solid #FFD700;
}

.page-platforms-platform-b-review__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
}

.page-platforms-platform-b-review__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e5d4b3;
}

.page-platforms-platform-b-review__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-platforms-platform-b-review__cta-button:hover {
    background-color: #e5d4b3; /* Lighter gold on hover */
    color: #1A2B4C;
}

.page-platforms-platform-b-review__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-platforms-platform-b-review__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-platforms-platform-b-review__content-section:last-of-type {
    border-bottom: none;
}

.page-platforms-platform-b-review__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-platforms-platform-b-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-platforms-platform-b-review__sub-section-title {
    font-size: 2em;
    color: #e5d4b3; /* Light text for sub-section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-platforms-platform-b-review__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e5d4b3;
}

.page-platforms-platform-b-review__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-platforms-platform-b-review__list {
    list-style: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #e5d4b3;
}

.page-platforms-platform-b-review__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-platforms-platform-b-review__list li strong {
    color: #FFD700;
}

.page-platforms-platform-b-review__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-platforms-platform-b-review__image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-platforms-platform-b-review__image-half-width {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platforms-platform-b-review__main-title {
        font-size: 2.5em;
    }

    .page-platforms-platform-b-review__subtitle {
        font-size: 1.2em;
    }

    .page-platforms-platform-b-review__section-title {
        font-size: 2em;
    }

    .page-platforms-platform-b-review__sub-section-title {
        font-size: 1.5em;
    }

    .page-platforms-platform-b-review__text-block,
    .page-platforms-platform-b-review__list li {
        font-size: 1em;
    }

    .page-platforms-platform-b-review__hero-section {
        padding: 60px 0;
    }
    
    .page-platforms-platform-b-review__image-half-width {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-platforms-platform-b-review__main-title {
        font-size: 2em;
    }

    .page-platforms-platform-b-review__subtitle {
        font-size: 1em;
    }

    .page-platforms-platform-b-review__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-platforms-platform-b-review__section-title {
        font-size: 1.8em;
    }

    .page-platforms-platform-b-review__sub-section-title {
        font-size: 1.3em;
    }

    .page-platforms-platform-b-review__list {
        margin-left: 20px;
    }
}