/* style/about-our-story.css */
.page-about-our-story {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-about-our-story__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about-our-story__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A304C 100%);
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about-our-story__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-about-our-story__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-about-our-story__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.5;
}

.page-about-our-story__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.page-about-our-story__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-about-our-story__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    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;
    z-index: 2;
    position: relative;
}

.page-about-our-story__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about-our-story__section {
    padding: 80px 0;
    text-align: center;
}

.page-about-our-story__section:nth-of-type(even) {
    background-color: #1A2A40;
}

.page-about-our-story__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about-our-story__text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #E0E0E0;
}

.page-about-our-story__mission-grid, .page-about-our-story__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-about-our-story__mission-item, .page-about-our-story__value-card {
    background-color: #1A2A40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    color: #E0E0E0;
}

.page-about-our-story__mission-item:hover, .page-about-our-story__value-card:hover {
    transform: translateY(-10px);
}

.page-about-our-story__mission-icon, .page-about-our-story__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-about-our-story__mission-item h3, .page-about-our-story__value-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about-our-story__mission-item p, .page-about-our-story__value-card p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-about-our-story__timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

.page-about-our-story__timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #FFD700;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.page-about-our-story__timeline-item {
    padding: 10px 0;
    position: relative;
    width: 50%;
}

.page-about-our-story__timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 40px;
}

.page-about-our-story__timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 40px;
}

.page-about-our-story__timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFD700;
    border: 4px solid #0A192F;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.page-about-our-story__timeline-item:nth-child(odd)::after {
    right: -10px;
}

.page-about-our-story__timeline-item:nth-child(even)::after {
    left: -10px;
}

.page-about-our-story__timeline-date {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about-our-story__timeline-content {
    background-color: #1A2A40;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about-our-story__timeline-content h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about-our-story__timeline-content p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-about-our-story__timeline-image {
    width: 100%;
    max-width: 800px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about-our-story__future-image {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about-our-story__cta-button--bottom {
    margin-top: 40px;
}

.page-about-our-story .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about-our-story__hero {
        padding: 80px 20px 40px;
    }

    .page-about-our-story__title {
        font-size: 2.5em;
    }

    .page-about-our-story__subtitle {
        font-size: 1.2em;
    }

    .page-about-our-story__section-title {
        font-size: 2em;
    }

    .page-about-our-story__mission-grid, .page-about-our-story__values-grid {
        grid-template-columns: 1fr;
    }

    .page-about-our-story__timeline::before {
        left: 20px;
    }

    .page-about-our-story__timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        left: 0 !important;
        text-align: left !important;
    }

    .page-about-our-story__timeline-item::after {
        left: 10px !important;
    }

    .page-about-our-story__timeline-item:nth-child(odd)::after {
        right: auto;
    }

    .page-about-our-story__timeline-item:nth-child(odd) {
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .page-about-our-story__title {
        font-size: 2em;
    }

    .page-about-our-story__subtitle {
        font-size: 1em;
    }

    .page-about-our-story__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-about-our-story__section-title {
        font-size: 1.8em;
    }

    .page-about-our-story__mission-item h3, .page-about-our-story__value-card h3 {
        font-size: 1.5em;
    }
}