/* style/platform-reviews-other-platform-b.css */
.page-platform-reviews-other-platform-b {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-platform-reviews-other-platform-b .highlight-text {
    color: #FFD700; /* Gold */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-other-platform-b__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
}

.page-platform-reviews-other-platform-b__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-platform-reviews-other-platform-b__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.8), rgba(255, 215, 0, 0.6)); /* Dark Blue to Gold overlay */
    z-index: 2;
}

.page-platform-reviews-other-platform-b__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-platform-reviews-other-platform-b__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold text on dark background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-platform-reviews-other-platform-b__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews-other-platform-b__btn-primary,
.page-platform-reviews-other-platform-b__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
}

.page-platform-reviews-other-platform-b__btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-platform-reviews-other-platform-b__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-platform-reviews-other-platform-b__btn-secondary {
    background-color: #000080; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-platform-reviews-other-platform-b__btn-secondary:hover {
    background-color: #000066;
    transform: translateY(-2px);
}

.page-platform-reviews-other-platform-b__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-other-platform-b__section:nth-of-type(even) {
    background-color: #f0f4f8; /* Light gray-blue for alternating sections */
}

.page-platform-reviews-other-platform-b__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-platform-reviews-other-platform-b__section-title {
    font-size: 2.2em;
    color: #000080; /* Dark blue title */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-reviews-other-platform-b__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-platform-reviews-other-platform-b__sub-section-title {
    font-size: 1.6em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-platform-reviews-other-platform-b__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-platform-reviews-other-platform-b__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-platform-reviews-other-platform-b__list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #000080; /* Dark blue checkmark */
    font-weight: bold;
}

.page-platform-reviews-other-platform-b__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-other-platform-b__table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.page-platform-reviews-other-platform-b__comparison-table {
    width: 100%;    border-collapse: collapse;
    margin-bottom: 30px;
    min-width: 600px;
}

.page-platform-reviews-other-platform-b__comparison-table th,
.page-platform-reviews-other-platform-b__comparison-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.page-platform-reviews-other-platform-b__comparison-table th {
    background-color: #000080; /* Dark blue header */
    color: #FFD700; /* Gold text */
    font-weight: bold;
    text-transform: uppercase;
}

.page-platform-reviews-other-platform-b__comparison-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-platform-reviews-other-platform-b__comparison-table tbody tr:hover {
    background-color: #e9e9e9;
}

.page-platform-reviews-other-platform-b__link {
    color: #000080; /* Dark blue for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-platform-reviews-other-platform-b__link:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: none;
}

.page-platform-reviews-other-platform-b__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-platform-reviews-other-platform-b__faq-question {
    font-size: 1.3em;
    color: #000080; /* Dark blue question */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-platform-reviews-other-platform-b__faq-answer {
    color: #555;
    margin-bottom: 0;
}

.page-platform-reviews-other-platform-b__cta-bottom {
    background: linear-gradient(135deg, #000080, #000066); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-other-platform-b__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-platform-reviews-other-platform-b__cta-content {
    position: relative;
    z-index: 2;
}

.page-platform-reviews-other-platform-b__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews-other-platform-b__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-other-platform-b__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-platform-reviews-other-platform-b__hero {
        height: 400px;
    }

    .page-platform-reviews-other-platform-b__title {
        font-size: 2em;
    }

    .page-platform-reviews-other-platform-b__subtitle {
        font-size: 1em;
    }

    .page-platform-reviews-other-platform-b__section-title {
        font-size: 1.8em;
    }

    .page-platform-reviews-other-platform-b__sub-section-title {
        font-size: 1.4em;
    }

    .page-platform-reviews-other-platform-b__btn-primary,
    .page-platform-reviews-other-platform-b__btn-secondary {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-platform-reviews-other-platform-b__cta-title {
        font-size: 2em;
    }

    .page-platform-reviews-other-platform-b__cta-description {
        font-size: 1em;
    }

    .page-platform-reviews-other-platform-b__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-other-platform-b__hero {
        height: 300px;
    }

    .page-platform-reviews-other-platform-b__title {
        font-size: 1.5em;
    }

    .page-platform-reviews-other-platform-b__subtitle {
        font-size: 0.9em;
    }

    .page-platform-reviews-other-platform-b__section-title {
        font-size: 1.5em;
    }

    .page-platform-reviews-other-platform-b__sub-section-title {
        font-size: 1.2em;
    }

    .page-platform-reviews-other-platform-b__cta-title {
        font-size: 1.8em;
    }
}