/* style/about.css */

/* General Styles for page-about */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__section-title--light {
    color: #ffffff;
}

.page-about__section-title--light::after {
    background-color: #FFD700;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    margin-top: 20px;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
}

.page-about__btn--secondary {
    background-color: #1A202C;
    color: #FFD700;
    margin-top: 20px;
}

.page-about__btn--secondary:hover {
    background-color: #3a475a;
}

.page-about__btn--dark {
    background-color: #1A202C;
    color: #FFD700;
}

.page-about__btn--dark:hover {
    background-color: #3a475a;
}

.page-about__bg--dark {
    background-color: #1A202C;
    color: #f8f8f8;
}

.page-about__bg--primary {
    background-color: #FFD700;
    color: #1A202C;
}

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    color: #ffffff;
    text-align: center;
}

.page-about__hero-section .page-about__container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-about__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Story Section */
.page-about__story-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-about__story-content,
.page-about__why-choose-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__story-content .page-about__text-content,
.page-about__why-choose-us-content .page-about__text-content {
    flex: 1;
    min-width: 300px;
}

.page-about__story-content .page-about__image-wrapper,
.page-about__why-choose-us-content .page-about__image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.page-about__values-section {
    padding: 60px 0;
    text-align: center;
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__value-item {
    background-color: #2a313e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__value-item p {
    color: #cccccc;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-about__why-choose-us-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__why-choose-us-section ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-about__why-choose-us-section ul li::before {
    content: '✔';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Call to Action Section */
.page-about__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #FFD700;
    color: #1A202C;
}

.page-about__cta-section .page-about__section-title {
    color: #1A202C;
}

.page-about__cta-section .page-about__section-title::after {
    background-color: #1A202C;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-section,
    .page-about__story-content,
    .page-about__why-choose-us-content {
        flex-direction: column;
        text-align: center;
    }

    .page-about__hero-section .page-about__container,
    .page-about__hero-image-wrapper,
    .page-about__story-content .page-about__text-content,
    .page-about__story-content .page-about__image-wrapper,
    .page-about__why-choose-us-content .page-about__text-content,
    .page-about__why-choose-us-content .page-about__image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-about__story-content .page-about__image-wrapper,
    .page-about__why-choose-us-content .page-about__image-wrapper {
        order: -1; /* Image first on mobile for some sections */
    }

    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 60px 0;
    }

    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }

    .page-about__btn {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }

    .page-about__section-title {
        font-size: 1.5em;
    }

    .page-about__value-title {
        font-size: 1.3em;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}