/* style/resources-bj38-platform-introduction.css */

/* Variables */
:root {
    --bj38-primary-color: #0A2463;
    --bj38-secondary-color: #FFD700;
    --bj38-text-light: #F8F8F8;
    --bj38-text-dark: #333333;
    --bj38-background-light: #FFFFFF;
    --bj38-background-dark: #0A1A3A;
    --bj38-border-color: #E0E0E0;
}

.page-resources-bj38-platform-introduction {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--bj38-text-dark);
    background-color: var(--bj38-background-light);
}

/* Hero Section */
.page-resources-bj38-platform-introduction__hero-section {
    background: linear-gradient(135deg, var(--bj38-primary-color) 0%, #0A2F7C 50%, var(--bj38-secondary-color) 100%);
    color: var(--bj38-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-resources-bj38-platform-introduction__hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-resources-bj38-platform-introduction__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--bj38-text-light);
}

.page-resources-bj38-platform-introduction__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-bj38-platform-introduction__cta-button {
    display: inline-block;
    background-color: var(--bj38-secondary-color);
    color: var(--bj38-primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-bj38-platform-introduction__cta-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-resources-bj38-platform-introduction__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}