/* style/index-platform-highlights.css */

/* Base styles for the page content */
.page-index-platform-highlights {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background for general content */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Hero Section */
.page-index-platform-highlights__hero {
    background: linear-gradient(135deg, #1A202C, #333d4f); /* Dark gradient */
    padding: 80px 20px;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.page-index-platform-highlights__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-index-platform-highlights__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700; /* Gold for H1 */
}

.page-index-platform-highlights__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* General Section Styling */
.page-index-platform-highlights__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-index-platform-highlights__section:nth-of-type(even) {
    background-color: #2a3340; /* Slightly lighter dark background for contrast */
}

.page-index-platform-highlights__section h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for H2 */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-platform-highlights__section h3 {
    font-size: 1.8em;
    color: #f0f0f0; /* Light grey for H3 */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-index-platform-highlights__section p {
    font-size: 1.1em;
    color: #e5dfd3;
    margin-bottom: 20px;
}

.page-index-platform-highlights__section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.page-index-platform-highlights__section ul li {
    background-color: #3a4555; /* Darker background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #e5dfd3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__section ul li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

/* Image styles */
.page-index-platform-highlights__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Call to Action Buttons */
.page-index-platform-highlights__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-index-platform-highlights__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

.page-index-platform-highlights__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-index-platform-highlights__btn--secondary {
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700; /* Gold border */
}

.page-index-platform-highlights__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A202C; /* Dark text on gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-index-platform-highlights__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-platform-highlights__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}


/* Call to Action Block at the end */
.page-index-platform-highlights__cta-block {
    padding: 80px 20px;
    text-align: center;
    color: #e5dfd3;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-top: 5px solid #FFD700; /* Gold border top */
}

.page-index-platform-highlights__cta-block .page-index-platform-highlights__image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-index-platform-highlights__cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.7); /* Dark overlay */
    z-index: 1;
}

.page-index-platform-highlights__cta-block h3 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-index-platform-highlights__cta-block p {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-platform-highlights__cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-platform-highlights__hero h1 {
        font-size: 2.5em;
    }

    .page-index-platform-highlights__hero p {
        font-size: 1em;
    }

    .page-index-platform-highlights__section h2 {
        font-size: 2em;
    }

    .page-index-platform-highlights__section h3 {
        font-size: 1.5em;
    }

    .page-index-platform-highlights__section p {
        font-size: 0.95em;
    }

    .page-index-platform-highlights__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-index-platform-highlights__cta-block h3 {
        font-size: 2em;
    }

    .page-index-platform-highlights__cta-block p {
        font-size: 1.1em;
    }

    .page-index-platform-highlights__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero {
        padding: 60px 15px;
    }
    .page-index-platform-highlights__hero h1 {
        font-size: 2em;
    }
    .page-index-platform-highlights__section {
        padding: 40px 15px;
    }
    .page-index-platform-highlights__section h2 {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__btn {
        width: 100%;
        max-width: 250px;
        margin: 10px 0;
    }
}