/* style/resources-promotion-analysis.css */
.page-resources-promotion-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-resources-promotion-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-promotion-analysis__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 20px;
    text-align: center;
    background-color: #26A9E0; /* Brand primary color for hero */
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

.page-resources-promotion-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-resources-promotion-analysis__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-resources-promotion-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources-promotion-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-promotion-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-resources-promotion-analysis__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-resources-promotion-analysis__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-resources-promotion-analysis__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-resources-promotion-analysis__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-left: 15px;
}

.page-resources-promotion-analysis__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-resources-promotion-analysis__video-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-resources-promotion-analysis__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #000;
}

.page-resources-promotion-analysis__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.page-resources-promotion-analysis__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.page-resources-promotion-analysis__content-area {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand color for main content area */
    color: #ffffff; /* Light text for brand color background */
}

.page-resources-promotion-analysis__content-area p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-resources-promotion-analysis__list,
.page-resources-promotion-analysis__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-promotion-analysis__ordered-list {
    list-style-type: decimal;
}

.page-resources-promotion-analysis__list li,
.page-resources-promotion-analysis__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-promotion-analysis__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-promotion-analysis__faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-promotion-analysis__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-promotion-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-resources-promotion-analysis__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-promotion-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-promotion-analysis__faq-item.active .page-resources-promotion-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-promotion-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-resources-promotion-analysis__faq-item.active .page-resources-promotion-analysis__faq-answer {
    max-height: 1000px !important; /* Ensure it expands sufficiently */
    padding: 15px 25px;
}

.page-resources-promotion-analysis__faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-resources-promotion-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-promotion-analysis__contact-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-resources-promotion-analysis__copyright {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #aaaaaa;
    background-color: #0a0a0a;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-resources-promotion-analysis__hero-title {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .page-resources-promotion-analysis__hero-section {
        min-height: 500px;
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
    }

    .page-resources-promotion-analysis__hero-title {
        font-size: 2.2em;
    }

    .page-resources-promotion-analysis__hero-description {
        font-size: 1em;
    }

    .page-resources-promotion-analysis__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .page-resources-promotion-analysis__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .page-resources-promotion-analysis__section-title {
        font-size: 1.8em;
    }

    .page-resources-promotion-analysis__content-area,
    .page-resources-promotion-analysis__video-section,
    .page-resources-promotion-analysis__contact-section {
        padding: 40px 0;
    }

    .page-resources-promotion-analysis__container {
        padding: 0 15px;
    }

    .page-resources-promotion-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-promotion-analysis video,
    .page-resources-promotion-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-promotion-analysis__video-section,
    .page-resources-promotion-analysis__video-container,
    .page-resources-promotion-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-resources-promotion-analysis__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-promotion-analysis__faq-answer {
        padding: 0 20px;
    }

    .page-resources-promotion-analysis__faq-item.active .page-resources-promotion-analysis__faq-answer {
        padding: 10px 20px;
    }
}