/* style/resources-ae888-reputation-deep-dive.css */
.page-resources-ae888-reputation-deep-dive {
    font-family: 'Arial', sans-serif;
    color: #0A192F;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-resources-ae888-reputation-deep-dive__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #FFD700 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ae888-reputation-deep-dive__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: page-resources-ae888-reputation-deep-dive__pulse 4s infinite ease-in-out;
}

.page-resources-ae888-reputation-deep-dive__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: page-resources-ae888-reputation-deep-dive__pulse 4s infinite ease-in-out reverse;
}

@keyframes page-resources-ae888-reputation-deep-dive__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-resources-ae888-reputation-deep-dive__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-reputation-deep-dive__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-ae888-reputation-deep-dive__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-resources-ae888-reputation-deep-dive__article {
    font-size: 1.1em;
    color: #333333;
}

.page-resources-ae888-reputation-deep-dive__heading {
    font-size: 2.2em;
    color: #0A192F;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    font-weight: bold;
}

.page-resources-ae888-reputation-deep-dive__sub-heading {
    font-size: 1.6em;
    color: #0A192F;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-ae888-reputation-deep-dive__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-ae888-reputation-deep-dive__list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-ae888-reputation-deep-dive__list li {
    margin-bottom: 10px;
}

.page-resources-ae888-reputation-deep-dive__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #0A192F;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

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

.page-resources-ae888-reputation-deep-dive__button--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-resources-ae888-reputation-deep-dive__button--primary:hover {
    background-color: #e6c200;
}

.page-resources-ae888-reputation-deep-dive__button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    margin-left: 20px;
}

.page-resources-ae888-reputation-deep-dive__button--secondary:hover {
    background-color: #1a3a5e;
    color: #FFD700;
}

.page-resources-ae888-reputation-deep-dive__cta-buttons {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-resources-ae888-reputation-deep-dive__faq-item {
    background-color: #f0f2f5;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-resources-ae888-reputation-deep-dive__faq-item .page-resources-ae888-reputation-deep-dive__sub-heading {
    margin-top: 0;
    font-size: 1.4em;
    color: #0A192F;
}

.page-resources-ae888-reputation-deep-dive__faq-item p {
    color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ae888-reputation-deep-dive__title {
        font-size: 2.5em;
    }

    .page-resources-ae888-reputation-deep-dive__subtitle {
        font-size: 1.2em;
    }

    .page-resources-ae888-reputation-deep-dive__heading {
        font-size: 1.8em;
    }

    .page-resources-ae888-reputation-deep-dive__sub-heading {
        font-size: 1.4em;
    }

    .page-resources-ae888-reputation-deep-dive__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-ae888-reputation-deep-dive__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-ae888-reputation-deep-dive__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-ae888-reputation-deep-dive__title {
        font-size: 2em;
    }

    .page-resources-ae888-reputation-deep-dive__subtitle {
        font-size: 1em;
    }

    .page-resources-ae888-reputation-deep-dive__hero-section {
        padding: 80px 0;
    }

    .page-resources-ae888-reputation-deep-dive__heading {
        font-size: 1.6em;
    }

    .page-resources-ae888-reputation-deep-dive__button {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .page-resources-ae888-reputation-deep-dive__button + .page-resources-ae888-reputation-deep-dive__button {
        margin-top: 15px;
    }
}