/* style/platform-reviews-platform-a-deep-review.css */

:root {
    --page-primary-color: #0A2E36;
    --page-secondary-color: #E0B34C;
    --page-text-light: #F8F8F8;
    --page-text-dark: #333333;
    --page-background-light: #F4F7F6;
    --page-background-dark: #072228;
}

.page-platform-reviews-platform-a-deep-review {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-platform-reviews-platform-a-deep-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-platform-reviews-platform-a-deep-review__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color), #1A4F5B);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-platform-reviews-platform-a-deep-review__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-platform-a-deep-review__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-platform-a-deep-review__content-section {
    padding: 60px 0;
}

.page-platform-reviews-platform-a-deep-review__section-title {
    font-size: 2.2em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-platform-reviews-platform-a-deep-review__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-platform-reviews-platform-a-deep-review__sub-section-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
}

.page-platform-reviews-platform-a-deep-review__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--page-text-dark);
}

.page-platform-reviews-platform-a-deep-review__highlight {
    color: var(--page-primary-color);
    font-weight: bold;
}

.page-platform-reviews-platform-a-deep-review__image {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-platform-a-deep-review__image--full-width {
    width: 100%;
}

.page-platform-reviews-platform-a-deep-review__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-platform-reviews-platform-a-deep-review__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    margin-right: 15px;
}

.page-platform-reviews-platform-a-deep-review__btn--primary:hover {
    background-color: #C79E3E;
    transform: translateY(-3px);
}

.page-platform-reviews-platform-a-deep-review__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-platform-reviews-platform-a-deep-review__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-platform-reviews-platform-a-deep-review__link {
    color: var(--page-primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-platform-reviews-platform-a-deep-review__link:hover {
    color: var(--page-secondary-color);
}

.page-platform-reviews-platform-a-deep-review__cta-card {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews-platform-a-deep-review__cta-title {
    font-size: 2.5em;
    color: var(--page-secondary-color);
    margin-bottom: 20px;
}

.page-platform-reviews-platform-a-deep-review__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-reviews-platform-a-deep-review__hero-title {
        font-size: 2em;
    }

    .page-platform-reviews-platform-a-deep-review__hero-subtitle {
        font-size: 1em;
    }

    .page-platform-reviews-platform-a-deep-review__section-title {
        font-size: 1.8em;
    }

    .page-platform-reviews-platform-a-deep-review__sub-section-title {
        font-size: 1.5em;
    }

    .page-platform-reviews-platform-a-deep-review__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .page-platform-reviews-platform-a-deep-review__cta-title {
        font-size: 2em;
    }

    .page-platform-reviews-platform-a-deep-review__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-platform-a-deep-review__hero-section {
        padding: 60px 0;
    }

    .page-platform-reviews-platform-a-deep-review__hero-title {
        font-size: 1.8em;
    }

    .page-platform-reviews-platform-a-deep-review__btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-platform-reviews-platform-a-deep-review__cta-card .page-platform-reviews-platform-a-deep-review__btn {
        margin-left: 0;
        margin-right: 0;
    }
}