:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --light-grey-bg: #f1f3f5;
    --border-color: #e0e0e0;
}

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color-light-bg); /* Default text color for light backgrounds */
    background-color: var(--light-grey-bg);
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 180px; /* Adjusted for fixed header desktop */
    padding-bottom: 60px;
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-about__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.page-about__hero-image {
    width: 100%;
    max-width: 800px; /* Adjusted max-width for better visual */
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-about__main-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-dark-bg);
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__section {
    padding: 60px 20px;
    background-color: var(--light-grey-bg);
    color: var(--text-color-light-bg);
}

.page-about__dark-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-about__light-bg {
    background-color: #ffffff;
    color: var(--text-color-light-bg);
}

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

.page-about__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-about__dark-section .page-about__section-title {
    color: var(--secondary-color);
}

.page-about__content-block {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

.page-about__content-block p {
    margin-bottom: 20px;
}

.page-about__content-block strong {
    color: var(--primary-color);
}

.page-about__dark-section .page-about__content-block strong {
    color: var(--secondary-color);
}

.page-about__image-content {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-light-bg);
}

.page-about__dark-section .page-about__card {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color-dark-bg);
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__card-image {
    width: 100%;
    max-width: 250px; /* Ensuring min 200px but scaled for card */
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    object-fit: cover;
}

.page-about__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-about__dark-section .page-about__card-title {
    color: var(--secondary-color);
}

.page-about__card p {
    font-size: 16px;
    line-height: 1.7;
}

.page-about__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 17px;
}

.page-about__list li {
    margin-bottom: 10px;
}

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

.page-about__contact-list li {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.page-about__contact-list li strong {
    min-width: 120px;
    color: var(--primary-color);
}

.page-about__contact-list li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__contact-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-about__btn-primary {
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    border: 2px solid var(--primary-color);
}

.page-about__btn-primary:hover {
    background: #0f131a;
    border-color: #0f131a;
    color: var(--secondary-color);
}

.page-about__btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-about__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    border-color: var(--primary-color);
}

/* FAQ Section Styles */
.page-about__faq-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

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

.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: var(--text-color-light-bg);
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--primary-color);
}

.page-about__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-about__faq-question:active {
    background: #eeeeee;
}

.page-about__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-about__faq-item.active .page-about__faq-toggle {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-section {
        padding-top: 140px; /* Adjusted for fixed header tablet */
        padding-bottom: 40px;
    }
    .page-about__main-title {
        font-size: 36px;
    }
    .page-about__hero-description {
        font-size: 16px;
    }
    .page-about__section-title {
        font-size: 30px;
    }
    .page-about__content-block {
        font-size: 16px;
    }
    .page-about__card-title {
        font-size: 22px;
    }
    .page-about__card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: 120px; /* Adjusted for fixed header mobile */
        padding-bottom: 30px;
    }
    .page-about__hero-container {
        padding: 0 15px;
    }
    .page-about__main-title {
        font-size: 28px;
    }
    .page-about__hero-description {
        font-size: 15px;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-about__section {
        padding: 40px 15px;
    }
    .page-about__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-about__content-block {
        font-size: 15px;
    }
    .page-about__grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-about__card {
        padding: 25px;
    }
    .page-about__card-title {
        font-size: 20px;
    }
    .page-about__list {
        margin-left: 10px;
        font-size: 15px;
    }
    .page-about__contact-list li {
        flex-direction: column;
        align-items: flex-start;
        font-size: 16px;
    }
    .page-about__contact-list li strong {
        min-width: auto;
        margin-bottom: 5px;
    }

    .page-about__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-about__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-about__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .page-about__faq-answer {
        padding: 0 15px;
    }
    
    .page-about__faq-item.active .page-about__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-about__hero-section {
        padding-top: 100px; /* Further adjusted for smaller mobile */
    }
    .page-about__main-title {
        font-size: 24px;
    }
    .page-about__hero-description {
        font-size: 14px;
    }
    .page-about__cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .page-about__section-title {
        font-size: 22px;
    }
    .page-about__content-block {
        font-size: 14px;
    }
    .page-about__faq-question h3 {
        font-size: 15px;
    }
}