.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D;
    background-color: #F4F7FB;
}

.page-about__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

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

.page-about__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
}

.page-about__section-title--light {
    color: #ffffff;
}

.page-about__description-text {
    font-size: 18px;
    color: #1F2D3D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-about__description-text--light {
    color: #f0f0f0;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: 10px;
    background-color: #F4F7FB;
    text-align: center;
}

.page-about__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.page-about__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #2F6BFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__description {
    font-size: 18px;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-about__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.page-about__btn-secondary:hover {
    background: #2F6BFF;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mission & Vision Section */
.page-about__mission-vision {
    background-color: #F4F7FB;
}

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

.page-about__mission-card,
.page-about__vision-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-about__mission-card:hover,
.page-about__vision-card:hover {
    transform: translateY(-5px);
}

.page-about__icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-about__card-title {
    font-size: 24px;
    font-weight: bold;
    color: #2F6BFF;
    margin-bottom: 15px;
}

.page-about__card-text {
    font-size: 16px;
    color: #1F2D3D;
}

/* Why Choose Section */
.page-about__why-choose {
    background-color: #F4F7FB;
}

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

.page-about__feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
}

.page-about__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Our Values Section */
.page-about__our-values {
    background: #2F6BFF;
    color: #ffffff;
}

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

.page-about__value-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-about__value-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-about__value-description {
    font-size: 15px;
    color: #f0f0f0;
}

/* Security & Fairplay Section */
.page-about__security-fairplay {
    background-color: #F4F7FB;
}

.page-about__security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about__security-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-about__security-text {
    flex: 1;
    max-width: 50%;
    font-size: 16px;
    color: #1F2D3D;
}

.page-about__security-text p {
    margin-bottom: 15px;
}

.page-about__security-text a {
    color: #2F6BFF;
    text-decoration: underline;
}

.page-about__security-text a:hover {
    color: #6FA3FF;
}

/* Future Outlook Section */
.page-about__future-outlook {
    background: #2F6BFF;
    color: #ffffff;
    text-align: center;
}

/* FAQ Section */
.page-about__faq-section {
    background-color: #F4F7FB;
}

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

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

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #1F2D3D;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.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: 24px;
    line-height: 1;
    color: #2F6BFF;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

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

.page-about__faq-answer a {
    color: #2F6BFF;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__hero-content {
        padding: 0 20px 30px;
    }
    .page-about__main-title {
        font-size: clamp(26px, 3.5vw, 42px);
    }
    .page-about__section-title {
        font-size: 30px;
    }
    .page-about__content-grid,
    .page-about__features-grid,
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__security-content {
        flex-direction: column;
        text-align: center;
    }
    .page-about__security-image,
    .page-about__security-text {
        max-width: 100%;
    }
    .page-about__security-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Hero Section */
    .page-about__hero-section {
        padding-top: 10px !important;
    }
    .page-about__hero-image {
        object-fit: contain !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: unset !important;
    }
    .page-about__main-title {
        font-size: 28px !important;
    }
    .page-about__description {
        font-size: 16px !important;
    }
    .page-about__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-about__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-about__btn-secondary {
        margin-top: 10px;
    }

    /* General Images and Containers */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__content-grid,
    .page-about__features-grid,
    .page-about__values-grid,
    .page-about__security-content,
    .page-about__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Section Titles and Text */
    .page-about__section-title {
        font-size: 26px !important;
        margin-bottom: 25px;
    }
    .page-about__description-text {
        font-size: 16px !important;
        margin-bottom: 30px;
    }
    .page-about__card-title {
        font-size: 20px !important;
    }
    .page-about__card-text {
        font-size: 15px !important;
    }
    .page-about__value-title {
        font-size: 20px !important;
    }
    .page-about__value-description {
        font-size: 14px !important;
    }
    .page-about__security-text {
        font-size: 15px !important;
    }

    /* FAQ Section */
    .page-about__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 15px;
    }
    .page-about__faq-toggle {
        font-size: 20px;
    }
}