.page-about {
    font-family: 'Arial', sans-serif;
    color: #FFF5E1; /* Text Main */
    background-color: #B71C1C; /* Background */
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #7A0E0E; /* Deep Red for hero section background */
    padding-top: 10px; /* Small top padding for visual separation */
    padding-bottom: 40px;
}

.page-about__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-about__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 30px 20px;
    z-index: 1;
    color: #FFF5E1;
}

.page-about__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD86A; /* Gold-like accent for title */
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__description {
    font-size: clamp(1em, 2vw, 1.2em);
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    border: 2px solid #F2B544; /* Border */
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for text on gold button for contrast */
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    box-shadow: 0 0 15px #FFCC66; /* Glow */
    transform: translateY(-2px);
}

.page-about__btn-secondary {
    background-color: #C91F17; /* Main color */
    color: #FFF5E1; /* Text Main */
    border: 2px solid #F2B544; /* Border */
}

.page-about__btn-secondary:hover {
    background-color: #E53935; /* Auxiliary color */
    box-shadow: 0 0 15px #FFCC66; /* Glow */
    transform: translateY(-2px);
}

.page-about__cta-buttons--center {
    margin-top: 30px;
}

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

.page-about__section:last-of-type {
    border-bottom: none;
}

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

.page-about__container--centered {
    text-align: center;
}

.page-about__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: #F4D34D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__subtitle {
    font-size: clamp(1.4em, 3vw, 2em);
    color: #FFD86A; /* Button gradient start color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__subtitle--center {
    text-align: center;
}

.page-about__text-block p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-about__text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

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

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

.page-about__text-block {
    flex: 1;
}

.page-about__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-about__image-block img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

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

.page-about__card {
    background-color: #D32F2F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F2B544; /* Border */
}

.page-about__card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-about__card-title {
    font-size: 1.5em;
    color: #FFD86A; /* Gold-like accent */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__card p {
    font-size: 1em;
    color: #FFF5E1; /* Text Main */
}

.page-about__numbered-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
}

.page-about__numbered-list li {
    background-color: #C91F17; /* Main color */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFF5E1; /* Text Main */
    border: 1px solid #F2B544; /* Border */
}

.page-about__numbered-list li::before {
    content: counter(list-item);
    counter-increment: list-item;
    background-color: #FFD86A; /* Button gradient start color */
    color: #7A0E0E; /* Deep Red for text on gold */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.page-about__list-strong {
    color: #FFD86A; /* Gold-like accent */
}

.page-about__faq-list {
    margin-top: 40px;
}

.page-about__faq-item {
    background-color: #D32F2F; /* Card BG */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
}

.page-about__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: #FFD86A; /* Gold-like accent */
    background-color: #C91F17; /* Main color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-about__faq-item summary:hover {
    background-color: #E53935; /* Auxiliary color */
}

.page-about__faq-item[open] summary {
    border-bottom: 1px solid transparent;
}

.page-about__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-about__faq-item summary::marker {
    display: none;
}

.page-about__faq-qtext {
    flex-grow: 1;
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFF5E1; /* Text Main */
}

.page-about__faq-item[open] .page-about__faq-toggle {
    content: '−';
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: #FFF5E1; /* Text Main */
}

.page-about__faq-answer p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

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

    .page-about__image-block {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-about__hero-section {
        padding-bottom: 20px;
    }

    .page-about__hero-content {
        padding: 20px 15px;
    }

    .page-about__main-title {
        font-size: clamp(2em, 8vw, 3em);
    }

    .page-about__description {
        font-size: clamp(1em, 3vw, 1.1em);
    }

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-about__container {
        padding: 0 15px;
    }

    .page-about__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 30px;
    }

    .page-about__subtitle {
        font-size: clamp(1.2em, 4vw, 1.6em);
        margin-top: 25px;
    }

    .page-about__text-block p {
        font-size: 1em;
    }

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

    .page-about__card {
        padding: 25px;
    }

    /* Images */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-about__hero-image,
    .page-about__image-block img,
    .page-about__card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Image containers */
    .page-about__hero-section,
    .page-about__section,
    .page-about__container,
    .page-about__image-block,
    .page-about__card,
    .page-about__content-wrapper,
    .page-about__cta-buttons,
    .page-about__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure content doesn't spill */
    }
    
    .page-about__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-about__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-about__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
    }
}