.page-about-us {
    font-family: Arial, sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #0A0A0A; /* Main dark background */
    line-height: 1.6;
}

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

.page-about-us-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%); /* Dark gradient */
    position: relative;
    overflow: hidden;
}

.page-about-us-hero-content {
    z-index: 1;
    max-width: 800px;
    margin-bottom: 40px;
}

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

.page-about-us-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-about-us-btn {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #0A0A0A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about-us-btn:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-about-us-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-about-us-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.page-about-us-section:last-of-type {
    border-bottom: none;
}

.page-about-us-mission-vision .page-about-us-container,
.page-about-us-values .page-about-us-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about-us-container-reverse {
    flex-direction: row-reverse;
}

.page-about-us-content-block,
.page-about-us-image-block {
    flex: 1;
    min-width: 300px;
}

.page-about-us-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about-us-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-about-us-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.page-about-us-subheading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about-us-text {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 15px;
}

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

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

.page-about-us-list li {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-about-us-list li:before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

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

.page-about-us-grid-item:hover {
    transform: translateY(-5px);
}

.page-about-us-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons pop */
}

.page-about-us-image-full-width {
    margin-top: 60px;
    text-align: center;
}

.page-about-us-image-full-width img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about-us-detail-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-about-us-detail-item:hover {
    transform: translateY(-5px);
}

.page-about-us-detail-item .page-about-us-subheading a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about-us-detail-item .page-about-us-subheading a:hover {
    color: #E6C200;
}

.page-about-us-btn-small {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about-us-btn-small:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-about-us-cta {
    background-color: #1A1A1A;
    padding: 80px 20px;
    text-align: center;
}

.page-about-us-cta-content {
    max-width: 800px;
}

.page-about-us-btn-accent {
    background-color: #FFD700;
    color: #0A0A0A;
}

.page-about-us-btn-accent:hover {
    background-color: #E6C200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .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-mission-vision .page-about-us-container,
    .page-about-us-values .page-about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .page-about-us-container-reverse {
        flex-direction: column; /* Revert to column for smaller screens */
    }

    .page-about-us-content-block,
    .page-about-us-image-block {
        min-width: unset;
        width: 100%;
    }

    .page-about-us-image-block img {
        margin-top: 20px;
    }

    .page-about-us-heading {
        font-size: 2em;
    }

    .page-about-us-subheading {
        font-size: 1.5em;
    }

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

    .page-about-us-detail-grid {
        grid-template-columns: 1fr;
    }

    .page-about-us-detail-item {
        align-items: center;
        text-align: center;
    }
    .page-about-us-btn-small {
        align-self: center;
    }
}

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

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

    .page-about-us-btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-about-us-heading {
        font-size: 1.8em;
    }
}

/* Ensure contrast for text elements */
.page-about-us-text,
.page-about-us-list li {
    color: #C0C0C0; /* Light gray on dark background */
}

/* Ensure buttons have good contrast */
.page-about-us-btn,
.page-about-us-btn-small,
.page-about-us-btn-accent {
    color: #0A0A0A; /* Dark text */
    background-color: #FFD700; /* Bright yellow background */
}