/* style/about-us.css */
.page-about-us {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-about-us strong {
    color: #FFD700;
}

.page-about-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about-us__container--reversed {
    flex-direction: row-reverse;
}

.page-about-us__hero {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    padding: 100px 20px;
    text-align: center;
    color: #1A202C; /* Dark text on light gradient */
}

.page-about-us__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-about-us__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #1A202C;
}

.page-about-us__hero-subtitle {
    font-size: 1.5em;
    color: #333;
}

.page-about-us__mission-vision, .page-about-us__values, .page-about-us__team, .page-about-us__cta {
    padding: 60px 0;
}

.page-about-us__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.page-about-us__text-block {
    flex: 1;
    min-width: 300px;
    color: #f0f0f0;
}

.page-about-us__text-block p {
    margin-bottom: 15px;
}

.page-about-us__text-block ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about-us__text-block ul li {
    background-color: #2a3340; /* Slightly lighter dark background for list items */
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 5px solid #FFD700;
    color: #f0f0f0;
}

.page-about-us__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-about-us__team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #ccc;
}

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

.page-about-us__team-member {
    background-color: #2a3340; /* Dark background for team cards */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-about-us__team-member:hover {
    transform: translateY(-5px);
}

.page-about-us__member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #FFD700;
}

.page-about-us__member-name {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 5px;
}

.page-about-us__member-role {
    color: #ccc;
    font-size: 0.95em;
}

.page-about-us__cta {
    background-color: #2a3340; /* Darker background for CTA */
    text-align: center;
    padding: 80px 20px;
}

.page-about-us__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about-us__cta-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about-us__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

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

.page-about-us__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000;
}

.page-about-us__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-about-us__button--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A202C; /* Dark text on gold */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about-us__hero-title {
        font-size: 2.5em;
    }

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

    .page-about-us__section-title {
        font-size: 2em;
        text-align: center;
    }

    .page-about-us__container {
        flex-direction: column;
        gap: 20px;
    }

    .page-about-us__container--reversed {
        flex-direction: column;
    }

    .page-about-us__text-block, .page-about-us__image-block {
        min-width: unset;
        width: 100%;
    }

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

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

    .page-about-us__button {
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-about-us__hero-subtitle {
        font-size: 1em;
    }

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

    .page-about-us__button {
        font-size: 1em;
        padding: 12px 20px;
    }
}