.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg); /* Inherit from shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #0A2463;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E3B23C;
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B23C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

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

.page-about__section--mission {
    background-color: var(--dark-bg);
    color: #ffffff;
}

.page-about__section--why-choose {
    background-color: #0A2463;
    color: #ffffff;
}

.page-about__section--commitment {
    background-color: var(--dark-bg);
    color: #ffffff;
}

.page-about__section--join-community {
    background-color: #0A2463;
    color: #ffffff;
    padding-bottom: 80px;
}

.page-about__section--faq {
    background-color: var(--dark-bg);
    color: #ffffff;
}

.page-about__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #E3B23C;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-about__sub-title {
    font-size: 1.8em;
    color: #E3B23C;
    margin-bottom: 20px;
}

.page-about__description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-about__content-grid--reverse .page-about__text-block:first-child {
    order: 2;
}

.page-about__content-grid--reverse .page-about__image-wrapper:first-child {
    order: 1;
}

.page-about__text-block p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

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

.page-about__list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #f0f0f0;
}

.page-about__list-item::before {
    content: '✓';
    color: #E3B23C;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

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

.page-about__feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-about__feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-about__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-about__card-title a {
    color: #E3B23C;
    text-decoration: none;
}

.page-about__card-title a:hover {
    text-decoration: underline;
}

.page-about__feature-card p {
    color: #f0f0f0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-about__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-about__btn-primary {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

.page-about__btn-primary:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #0A2463;
}

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

.page-about__btn-secondary:hover {
    background-color: #E3B23C;
    color: #0A2463;
}

.page-about__contact-info {
    margin-top: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__contact-info .page-about__sub-title {
    text-align: center;
}

.page-about__contact-info p {
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 20px;
}

.page-about__contact-info .page-about__list {
    text-align: center;
    padding: 0;
}

.page-about__contact-info .page-about__list-item {
    display: inline-block;
    margin: 0 15px 10px;
    padding-left: 0;
    color: #f0f0f0;
}

.page-about__contact-info .page-about__list-item strong {
    color: #E3B23C;
}

.page-about__contact-info .page-about__list-item::before {
    content: none;
}

.page-about__contact-info .page-about__btn-primary {
    margin-top: 30px;
}

.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #E3B23C;
    cursor: pointer;
    background-color: #0A2463;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__faq-question:hover {
    background-color: #1a3b7a;
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
    color: #f0f0f0;
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 1000px !important; /* Sufficient height for content */
    padding: 20px;
    padding-top: 0;
}

.page-about__faq-answer p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-about__intro-video-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
    color: #ffffff;
}

.page-about__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-about__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-about__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-about__video-caption {
    font-size: 1.1em;
    margin-top: 20px;
    color: #f0f0f0;
}

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

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

    .page-about__sub-title {
        font-size: 1.5em;
    }

    .page-about__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-about__content-grid--reverse .page-about__text-block:first-child {
        order: initial;
    }
    
    .page-about__content-grid--reverse .page-about__image-wrapper:first-child {
        order: initial;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-about__container,
    .page-about__hero-section,
    .page-about__intro-video-section,
    .page-about__section,
    .page-about__feature-card,
    .page-about__cta-buttons,
    .page-about__contact-info,
    .page-about__faq-list,
    .page-about__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

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

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

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

    .page-about__sub-title {
        font-size: 1.3em;
    }

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

    .page-about__feature-image {
        height: 180px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__list-item {
        padding-left: 0;
    }

    .page-about__list-item::before {
        content: none;
    }

    .page-about__contact-info .page-about__list-item {
        display: block;
        margin: 0 0 10px;
    }

    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-about video,
    .page-about__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-about__video-wrapper {
        padding-bottom: 56.25% !important; /* Ensure aspect ratio */
        width: 100% !important;
        max-width: 100% !important;
    }

    .page-about__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-about__faq-answer {
        padding: 15px;
        padding-top: 0;
    }
}