/* style/resources-ae888-intro.css */

.page-resources-ae888-intro {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text color for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    font-size: 16px;
}

.page-resources-ae888-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-ae888-intro__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
    color: #FFD700; /* Gold for hero title */
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ae888-intro__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-resources-ae888-intro__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-resources-ae888-intro__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e5dfd3; /* Light text for subtitle */
}

.page-resources-ae888-intro__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-ae888-intro__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-resources-ae888-intro__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text for gold button */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-ae888-intro__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-ae888-intro__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-resources-ae888-intro__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-resources-ae888-intro__btn--tertiary {
    background-color: #3A475A;
    color: #FFD700;
    border: 2px solid #3A475A;
}

.page-resources-ae888-intro__btn--tertiary:hover {
    background-color: #4a5d77;
    transform: translateY(-3px);
}

.page-resources-ae888-intro__btn--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-resources-ae888-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.page-resources-ae888-intro__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-resources-ae888-intro__section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-resources-ae888-intro__section:nth-of-type(even) {
    background-color: #242b38; /* Slightly lighter dark background for contrast */
}

.page-resources-ae888-intro__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-ae888-intro__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-ae888-intro__subsection-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-resources-ae888-intro__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
    text-align: justify;
}

.page-resources-ae888-intro__text-content strong {
    color: #FFD700;
}

.page-resources-ae888-intro__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-ae888-intro__grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-resources-ae888-intro__grid-image:hover {
    transform: translateY(-5px);
}

.page-resources-ae888-intro__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-ae888-intro__feature-item {
    background-color: #2D3748; /* Darker grey background for feature items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-ae888-intro__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3A475A;
}

.page-resources-ae888-intro__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-ae888-intro__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-resources-ae888-intro__feature-description {
    font-size: 1em;
    color: #e5dfd3;
}

.page-resources-ae888-intro__cta-center {
    text-align: center;
    margin-top: 60px;
}

.page-resources-ae888-intro__full-width-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-intro__image-responsive {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-intro__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.page-resources-ae888-intro__faq-item {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-ae888-intro__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-resources-ae888-intro__faq-answer {
    font-size: 1em;
    color: #e5dfd3;
}

.page-resources-ae888-intro .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-ae888-intro__hero-title {
        font-size: 2.8em;
    }
    .page-resources-ae888-intro__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-ae888-intro__section-title {
        font-size: 2.2em;
    }
    .page-resources-ae888-intro__subsection-title {
        font-size: 1.8em;
    }
    .page-resources-ae888-intro__feature-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-resources-ae888-intro__hero-title {
        font-size: 2.2em;
    }
    .page-resources-ae888-intro__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-ae888-intro__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-ae888-intro__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-ae888-intro__section {
        padding: 60px 0;
    }
    .page-resources-ae888-intro__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-resources-ae888-intro__subsection-title {
        font-size: 1.5em;
    }
    .page-resources-ae888-intro__image-grid,
    .page-resources-ae888-intro__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-ae888-intro__cta-actions {
        flex-direction: column;
    }
    .page-resources-ae888-intro__btn--large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-ae888-intro__hero-title {
        font-size: 1.8em;
    }
    .page-resources-ae888-intro__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-ae888-intro__section-title {
        font-size: 1.5em;
    }
    .page-resources-ae888-intro__text-content,
    .page-resources-ae888-intro__feature-description,
    .page-resources-ae888-intro__faq-answer {
        font-size: 0.95em;
    }
    .page-resources-ae888-intro__faq-question {
        font-size: 1.2em;
    }
}