/* style/about-company-history.css */

/* Base styles for the page content area */
.page-about-company-history {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for main text, good contrast on light backgrounds */
    background-color: #FFFFFF; /* White background */
}

/* Container for consistent content width */
.page-about-company-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-about-company-history__hero {
    background-color: #1A237E; /* Primary color background */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
}

.page-about-company-history__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title, stands out on dark background */
    line-height: 1.2;
}

.page-about-company-history__intro {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    color: #E0E0E0; /* Lighter grey for intro text on dark background */
}

.page-about-company-history__intro strong {
    color: #FFD700; /* Gold for emphasized keywords */
}

/* General Section Styling */
.page-about-company-history__section {
    padding: 60px 0;
    border-bottom: 1px solid #E0E0E0; /* Light border for separation */
}

.page-about-company-history__section:last-of-type {
    border-bottom: none;
}

.page-about-company-history__section--early-days,
.page-about-company-history__section--leadership {
    background-color: #F8F8F8; /* Light off-white background for alternate sections */
}

.page-about-company-history__subtitle {
    font-size: 2.2em;
    color: #1A237E; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about-company-history__subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline for subtitles */
    border-radius: 2px;
}

/* Content Blocks with Image and Text */
.page-about-company-history__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about-company-history__text-content {
    flex: 1;
    min-width: 300px;
    font-size: 1.05em;
}

.page-about-company-history__text-content p {
    margin-bottom: 1em;
}

.page-about-company-history__text-content strong {
    color: #1A237E; /* Primary color for emphasized text */
}

.page-about-company-history__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-about-company-history__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-about-company-history__image:hover {
    transform: translateY(-5px);
}

/* Reversed layout for alternating sections */
.page-about-company-history__content-block--reversed {
    flex-direction: row-reverse;
}

/* Call to Action */
.page-about-company-history__cta {
    text-align: center;
    margin-top: 50px;
    font-size: 1.15em;
    font-weight: bold;
    color: #1A237E;
}

.page-about-company-history__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1A237E; /* Primary color text for button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-about-company-history__button:hover {
    background-color: #1A237E; /* Dark background on hover */
    color: #FFD700; /* Gold text on hover */
    transform: translateY(-3px);
    border-color: #1A237E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about-company-history__title {
        font-size: 2em;
    }

    .page-about-company-history__subtitle {
        font-size: 1.8em;
    }

    .page-about-company-history__intro {
        font-size: 1em;
    }

    .page-about-company-history__content-block {
        flex-direction: column;
        gap: 30px;
    }

    .page-about-company-history__content-block--reversed {
        flex-direction: column; /* Revert to column for small screens */
    }

    .page-about-company-history__text-content,
    .page-about-company-history__image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-about-company-history__button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-about-company-history__hero {
        padding: 50px 0;
    }

    .page-about-company-history__title {
        font-size: 1.8em;
    }

    .page-about-company-history__subtitle {
        font-size: 1.5em;
    }

    .page-about-company-history__section {
        padding: 40px 0;
    }
}