.page-about {
    color: #FFF6D6;
    background: #0A0A0A;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #0A0A0A;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.page-about__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px 50px;
    box-sizing: border-box;
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFD36B;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-about__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #FFF6D6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 15px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-about__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-about__btn-secondary {
    background: #111111;
    color: #FFD36B;
    border: 2px solid #3A2A12;
}

.page-about__btn-secondary:hover {
    transform: translateY(-3px);
    background: #1A1A1A;
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.2);
}

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

.page-about__section--dark {
    background: #111111;
}

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

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD36B, transparent);
    border-radius: 2px;
}

.page-about__content-area {
    text-align: left;
    color: #FFF6D6;
    line-height: 1.8;
}

.page-about__article-body {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-about__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #FFD36B;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about__article-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-about__article-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.page-about__article-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F2C14E;
    font-weight: bold;
}

.page-about__image-block {
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
}

.page-about__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

details.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
    overflow: hidden;
    background: #111111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-about__faq-item summary.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-about__faq-item summary.page-about__faq-question:hover {
    background: #1A1A1A;
}

.page-about__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #FFD36B;
}

.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #F2C14E;
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

details.page-about__faq-item .page-about__faq-answer {
    padding: 0 25px 25px;
    background: #0A0A0A;
    border-radius: 0 0 8px 8px;
    color: #FFF6D6;
    font-size: 1rem;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-about__hero-content {
        padding-bottom: 40px;
    }

    .page-about__main-title {
        font-size: 3rem;
    }

    .page-about__description {
        font-size: 1.1rem;
    }

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

    .page-about__section-title {
        font-size: 2.5rem;
    }

    .page-about__sub-title {
        font-size: 1.8rem;
    }

    .page-about__faq-qtext {
        font-size: 1rem;
    }

    .page-about__faq-toggle {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: 10px;
    }

    .page-about__hero-image img {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

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

    .page-about__main-title {
        font-size: 2.2rem; /* Clamp ensures it doesn't get too big on smaller screens */
        line-height: 1.3;
    }

    .page-about__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-about__cta-buttons {
        flex-direction: column; /* Buttons stack vertically */
        gap: 15px; /* Space between stacked buttons */
        padding: 0 15px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-about__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-about__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-about__sub-title {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-about__content-area p,
    .page-about__article-body p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .page-about__article-body ul li {
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .page-about__article-body ul li::before {
        font-size: 1.1rem;
    }

    .page-about__image-block {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-about__faq-section {
        padding: 50px 0;
    }

    details.page-about__faq-item summary.page-about__faq-question {
        padding: 15px 20px;
    }

    .page-about__faq-qtext {
        font-size: 0.95rem;
    }

    .page-about__faq-toggle {
        font-size: 24px;
        width: 25px;
    }

    details.page-about__faq-item .page-about__faq-answer {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}