/* style/caxeng-platform-reviews-platform-e.css */

/* Variables for colors */
:root {
    --caxeng-dark-blue: #0A2239;
    --caxeng-gold: #FFD700;
    --caxeng-red: #DC143C;
    --caxeng-light-grey: #f4f7fa;
    --caxeng-white: #ffffff;
    --caxeng-text-dark: #333333;
    --caxeng-text-light: #f0f0f0;
}

/* Base styling for the page content */
.page-caxeng-platform-reviews-platform-e {
    font-family: 'Arial', sans-serif;
    color: var(--caxeng-text-dark);
    line-height: 1.6;
    background-color: var(--caxeng-white);
}

.page-caxeng-platform-reviews-platform-e .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-caxeng-platform-reviews-platform-e .section-padding {
    padding: 60px 0;
}

.page-caxeng-platform-reviews-platform-e .bg-light {
    background-color: var(--caxeng-light-grey);
}

/* Hero Section */
.page-caxeng-platform-reviews-platform-e .hero-section {
    background: linear-gradient(135deg, var(--caxeng-dark-blue) 0%, #2a4a68 100%); /* Dark blue to a slightly lighter blue */
    color: var(--caxeng-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-caxeng-platform-reviews-platform-e .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue_gold]') no-repeat center center/cover; /* Abstract pattern for hero background */
    opacity: 0.15;
    z-index: 0;
}

.page-caxeng-platform-reviews-platform-e .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-caxeng-platform-reviews-platform-e .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--caxeng-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-caxeng-platform-reviews-platform-e .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--caxeng-text-light);
}

.page-caxeng-platform-reviews-platform-e .hero-image {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: 0;
    width: 300px; /* Adjust size */
    height: auto;
    opacity: 0.6;
    z-index: 0;
    transform: rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
    display: none; /* Hide image for better text readability on smaller screens */
}

/* General Section Styling */
.page-caxeng-platform-reviews-platform-e .section-title {
    font-size: 2.5em;
    color: var(--caxeng-dark-blue);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-caxeng-platform-reviews-platform-e .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--caxeng-gold);
    border-radius: 2px;
}

.page-caxeng-platform-reviews-platform-e h3 {
    font-size: 1.8em;
    color: var(--caxeng-dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-caxeng-platform-reviews-platform-e p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-caxeng-platform-reviews-platform-e ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-caxeng-platform-reviews-platform-e ul li {
    margin-bottom: 8px;
}

/* Content Wrapper for image and text */
.page-caxeng-platform-reviews-platform-e .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-caxeng-platform-reviews-platform-e .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.page-caxeng-platform-reviews-platform-e .content-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-caxeng-platform-reviews-platform-e .text-content {
    flex: 1;
}

/* Buttons */
.page-caxeng-platform-reviews-platform-e .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-caxeng-platform-reviews-platform-e .btn-primary {
    background-color: var(--caxeng-gold);
    color: var(--caxeng-dark-blue);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-caxeng-platform-reviews-platform-e .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-caxeng-platform-reviews-platform-e .btn-secondary {
    background-color: var(--caxeng-dark-blue);
    color: var(--caxeng-white);
    border: 2px solid var(--caxeng-gold);
}

.page-caxeng-platform-reviews-platform-e .btn-secondary:hover {
    background-color: #1a3a5a; /* Slightly lighter dark blue */
    color: var(--caxeng-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-caxeng-platform-reviews-platform-e .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-caxeng-platform-reviews-platform-e .link-highlight {
    color: var(--caxeng-red);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-caxeng-platform-reviews-platform-e .link-highlight:hover {
    color: var(--caxeng-dark-blue);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-caxeng-platform-reviews-platform-e .hero-title {
        font-size: 2.5em;
    }

    .page-caxeng-platform-reviews-platform-e .hero-subtitle {
        font-size: 1.1em;
    }

    .page-caxeng-platform-reviews-platform-e .section-title {
        font-size: 2em;
    }

    .page-caxeng-platform-reviews-platform-e h3 {
        font-size: 1.5em;
    }

    .page-caxeng-platform-reviews-platform-e .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-caxeng-platform-reviews-platform-e .content-wrapper.reverse {
        flex-direction: column; /* Revert to column for smaller screens */
    }

    .page-caxeng-platform-reviews-platform-e .content-image {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .page-caxeng-platform-reviews-platform-e .hero-title {
        font-size: 2em;
    }

    .page-caxeng-platform-reviews-platform-e .hero-subtitle {
        font-size: 1em;
    }

    .page-caxeng-platform-reviews-platform-e .section-title {
        font-size: 1.8em;
    }

    .page-caxeng-platform-reviews-platform-e h3 {
        font-size: 1.3em;
    }

    .page-caxeng-platform-reviews-platform-e .section-padding {
        padding: 40px 0;
    }

    .page-caxeng-platform-reviews-platform-e .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-caxeng-platform-reviews-platform-e .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-caxeng-platform-reviews-platform-e .hero-image {
        display: none; /* Ensure it's hidden on small screens */
    }
}