/* style/resources-lc88-brand-story.css */
.page-resources-lc88-brand-story {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A2239; /* Primary dark blue background */
}

.page-resources-lc88-brand-story__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-lc88-brand-story__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    position: relative;
    overflow: hidden;
}

.page-resources-lc88-brand-story__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for hero title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-lc88-brand-story__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-resources-lc88-brand-story__section {
    padding: 80px 0;
    background-color: #0A2239;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-lc88-brand-story__section:nth-child(even) {
    background-color: #122D47; /* Slightly lighter dark blue for alternating sections */
}

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

.page-resources-lc88-brand-story__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-lc88-brand-story__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-lc88-brand-story__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-lc88-brand-story__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-resources-lc88-brand-story__text-content {
    flex: 1;
    color: #E0E0E0;
}

.page-resources-lc88-brand-story__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-lc88-brand-story__text-content strong {
    color: #FFD700;
}

.page-resources-lc88-brand-story__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-lc88-brand-story__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-resources-lc88-brand-story__image:hover {
    transform: translateY(-5px);
}

.page-resources-lc88-brand-story__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-lc88-brand-story__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-lc88-brand-story__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-resources-lc88-brand-story__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-lc88-brand-story__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2239; /* Dark blue text */
}

.page-resources-lc88-brand-story__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-lc88-brand-story__btn--secondary {
    background-color: #0A2239; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-resources-lc88-brand-story__btn--secondary:hover {
    background-color: #1A3A5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-lc88-brand-story__cta {
    background-color: #122D47;
    text-align: center;
    padding: 80px 0;
}

.page-resources-lc88-brand-story__cta-content {
    max-width: 800px;
}

.page-resources-lc88-brand-story__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-lc88-brand-story__hero-title {
        font-size: 2.8em;
    }
    .page-resources-lc88-brand-story__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-lc88-brand-story__section-title {
        font-size: 2.2em;
    }
    .page-resources-lc88-brand-story__sub-title {
        font-size: 1.5em;
    }
    .page-resources-lc88-brand-story__content-wrapper {
        flex-direction: column;
    }
    .page-resources-lc88-brand-story__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-resources-lc88-brand-story__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-lc88-brand-story__hero {
        padding: 80px 0;
    }
    .page-resources-lc88-brand-story__hero-title {
        font-size: 2.2em;
    }
    .page-resources-lc88-brand-story__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-lc88-brand-story__section {
        padding: 60px 0;
    }
    .page-resources-lc88-brand-story__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-resources-lc88-brand-story__sub-title {
        font-size: 1.3em;
    }
    .page-resources-lc88-brand-story__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-lc88-brand-story__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-lc88-brand-story__hero-title {
        font-size: 1.8em;
    }
    .page-resources-lc88-brand-story__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-lc88-brand-story__section-title {
        font-size: 1.5em;
    }
    .page-resources-lc88-brand-story__sub-title {
        font-size: 1.1em;
    }
    .page-resources-lc88-brand-story__btn {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }
    .page-resources-lc88-brand-story__btn--secondary {
        margin-left: auto;
    }
}