/* style/about-us.css */
.page-about-us {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text on dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

.page-about-us__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient */
    position: relative;
    overflow: hidden;
}

.page-about-us__hero-content {
    max-width: 900px;
    z-index: 1;
}

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

.page-about-us__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light grey for subtitle */
}

.page-about-us__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 0;
}

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

.page-about-us__section {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about-us__section--mission {
    background-color: #282844; /* Slightly lighter dark background */
}

.page-about-us__section--values {
    background-color: #1A1A2E;
}

.page-about-us__section--offerings {
    background-color: #282844;
}

.page-about-us__section--cta {
    background-color: #FFD700; /* Gold background for CTA */
    color: #1A1A2E; /* Dark text on gold background */
    text-align: center;
    padding: 80px 20px;
}

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

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

.page-about-us__content-block {
    flex: 1;
}

.page-about-us__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-about-us__heading {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #FFD700; /* Gold for headings */
    font-weight: bold;
}

.page-about-us__heading--center {
    text-align: center;
    margin-bottom: 40px;
}

.page-about-us__section--cta .page-about-us__heading {
    color: #1A1A2E;
}

.page-about-us__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-about-us__section--cta .page-about-us__text {
    color: #1A1A2E;
}

.page-about-us__text--center {
    text-align: center;
}

.page-about-us__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-about-us__section--cta .page-about-us__highlight {
    color: #8c7300; /* Darker gold for contrast on gold background */
}

.page-about-us__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about-us__list-item {
    background-color: rgba(255, 215, 0, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
}

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

.page-about-us__grid-item {
    background-color: #1A1A2E;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-us__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about-us__grid-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
}

.page-about-us__grid-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about-us__grid-description {
    font-size: 1em;
    color: #CCCCCC;
}

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

.page-about-us__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A2E; /* Dark text on gold */
}

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

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

.page-about-us__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.page-about-us__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about-us__hero {
        padding: 60px 20px;
    }
    .page-about-us__title {
        font-size: 2.8em;
    }
    .page-about-us__subtitle {
        font-size: 1.1em;
    }
    .page-about-us__hero-image-wrapper {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        opacity: 0.15;
    }
    .page-about-us__container {
        flex-direction: column;
        text-align: center;
    }
    .page-about-us__container--reversed {
        flex-direction: column;
    }
    .page-about-us__image-block {
        order: -1;
        margin-bottom: 30px;
    }
    .page-about-us__heading {
        font-size: 2em;
    }
    .page-about-us__text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-about-us__title {
        font-size: 2.2em;
    }
    .page-about-us__heading {
        font-size: 1.8em;
    }
    .page-about-us__grid {
        grid-template-columns: 1fr;
    }
    .page-about-us__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-us__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-about-us__hero {
        padding: 40px 15px;
    }
    .page-about-us__title {
        font-size: 1.8em;
    }
    .page-about-us__subtitle {
        font-size: 0.9em;
    }
    .page-about-us__section {
        padding: 40px 15px;
    }
    .page-about-us__heading {
        font-size: 1.5em;
    }
    .page-about-us__text {
        font-size: 0.9em;
    }
    .page-about-us__button {
        width: 100%;
        margin: 5px 0;
    }
}