/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #3a5c7a 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    position: relative;
    overflow: hidden;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-about__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0; /* Slightly lighter for subtitle */
}

.page-about__section {
    padding: 80px 0;
    background-color: #12202f; /* Slightly lighter dark blue for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section:nth-child(odd) {
    background-color: #1A2E44; /* Main dark blue for alternating sections */
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.page-about__section-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px auto;
    color: #B0B0B0;
}

.page-about__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-about__text-content p {
    margin-bottom: 20px;
}

.page-about__text-content strong {
    color: #FFD700;
}

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

.page-about__image-wrapper--center {
    text-align: center;
    margin: 40px 0;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

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

.page-about__values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__values-list li {
    background-color: #12202f; /* Lighter dark blue for list items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__values-list li:hover {
    transform: translateY(-8px);
    background-color: #253d5a; /* Slightly darker on hover */
}

.page-about__values-list h3 {
    color: #FFD700; /* Gold for list item titles */
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-about__values-list p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-about__team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.page-about__team-member {
    background-color: #12202f; /* Lighter dark blue for team members */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__team-member:hover {
    transform: translateY(-8px);
    background-color: #253d5a;
}

.page-about__team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700;
}

.page-about__team-member h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-about__team-member p {
    color: #C0C0C0;
    font-size: 0.95em;
}

.page-about__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__benefit-item {
    background-color: #1A2E44; /* Main dark blue for benefit items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-about__benefit-item:hover {
    transform: translateY(-8px);
    background-color: #253d5a;
}

.page-about__benefit-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-about__benefit-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-about__cta-content {
    text-align: center;
    background-color: #12202f; /* Lighter dark blue for CTA background */
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 60px;
}

.page-about__cta-title {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 25px;
}

.page-about__cta-description {
    color: #E0E0E0;
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-about__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A2E44; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }

    .page-about__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-about__content-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-about__content-flex--reverse {
        flex-direction: column;
    }

    .page-about__image-wrapper {
        margin-bottom: 30px;
    }

    .page-about__values-list, .page-about__team-grid, .page-about__benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .page-about__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .page-about__section-intro {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .page-about__hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-about__text-content, .page-about__values-list p, .page-about__team-member p, .page-about__benefit-item p {
        font-size: 0.9em;
    }

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

    .page-about__cta-description {
        font-size: 0.9em;
    }
}