/* style/about.css */

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

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

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-about__hero > * {
    position: relative;
    z-index: 2;
}

.page-about__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

.page-about__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.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;
    cursor: pointer;
    font-size: 1em;
    border: none;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #000080;
}

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

.page-about__btn--secondary {
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #000066;
    color: #e6c200;
    border-color: #e6c200;
}

.page-about__btn--dark {
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #000080;
}

.page-about__btn--dark:hover {
    background-color: #000066;
    color: #FFD700;
    border-color: #000066;
}

/* Sections */
.page-about__section {
    padding: 60px 0;
}

.page-about__intro {
    background-color: #fff;
}

.page-about__heading {
    font-size: 2em;
    color: #000080;
    margin-bottom: 30px;
    text-align: center;
}

.page-about__heading--light {
    color: #FFD700;
}

.page-about__heading--dark {
    color: #000080;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-about__grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about__grid--reverse {
        grid-template-columns: 1fr 1fr;
        direction: rtl;
    }
    .page-about__grid--reverse > .page-about__content {
        direction: ltr;
    }
    .page-about__grid--reverse > .page-about__image-wrapper {
        direction: ltr;
    }
}

.page-about__image-wrapper {
    text-align: center;
}

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

.page-about__content p {
    margin-bottom: 15px;
    color: #555;
}

/* Values Section */
.page-about__values {
    text-align: center;
}

.page-about__grid--3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-about__grid--3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-about__value-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    transition: transform 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
}

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

.page-about__value-card p {
    color: #eee;
    font-size: 0.95em;
}

/* Why Choose Section */
.page-about__why-choose {
    background-color: #f0f2f5;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__list li {
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-about__list li strong {
    color: #000080;
}

/* Call to Action Section */
.page-about__cta {
    text-align: center;
    padding: 80px 20px;
}

.page-about__cta-content {
    max-width: 900px;
}

.page-about__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #000080;
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-about__title {
        font-size: 2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
    }
}