/* style/platform-introduction-brand-story.css */
.page-platform-introduction-brand-story {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for main text */
    background-color: #f8f8f8;
}

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

.page-platform-introduction-brand-story__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #FFFFFF; /* White text on dark/gradient background */
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-platform-introduction-brand-story__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-platform-introduction-brand-story__hero-subtitle {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
}

.page-platform-introduction-brand-story__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-platform-introduction-brand-story__section--alt {
    background-color: #f0f4f7; /* Light blue-gray for alternating sections */
}

.page-platform-introduction-brand-story__section-title {
    font-size: 2.5em;
    color: #000080; /* Navy blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-platform-introduction-brand-story__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-platform-introduction-brand-story__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-platform-introduction-brand-story__content-wrapper p {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    max-width: 900px;
    margin: 0;
}

.page-platform-introduction-brand-story__content-wrapper strong {
    color: #000080;
}

.page-platform-introduction-brand-story__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.page-platform-introduction-brand-story__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-platform-introduction-brand-story__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Navy blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-platform-introduction-brand-story__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-platform-introduction-brand-story__cta-button--secondary {
    background-color: #000080; /* Navy blue button */
    color: #FFD700; /* Gold text on navy blue */
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.4);
}

.page-platform-introduction-brand-story__cta-button--secondary:hover {
    background-color: #000066; /* Darker navy blue on hover */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-introduction-brand-story__hero-title {
        font-size: 2.5em;
    }

    .page-platform-introduction-brand-story__hero-subtitle {
        font-size: 1.2em;
    }

    .page-platform-introduction-brand-story__section-title {
        font-size: 2em;
    }

    .page-platform-introduction-brand-story__content-wrapper p {
        font-size: 1em;
    }

    .page-platform-introduction-brand-story__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-platform-introduction-brand-story__hero-title {
        font-size: 2em;
    }

    .page-platform-introduction-brand-story__hero-subtitle {
        font-size: 1em;
    }

    .page-platform-introduction-brand-story__section {
        padding: 40px 0;
    }

    .page-platform-introduction-brand-story__section-title {
        font-size: 1.8em;
    }

    .page-platform-introduction-brand-story__cta-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .page-platform-introduction-brand-story__cta-button {
        width: 80%;
        margin: 0 auto;
    }
}