.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f0f2f5; /* From shared.css body background */
}

.page-about__dark-section {
    background-color: #08160F; /* Background color from custom palette */
    color: #F2FFF6; /* Text Main from custom palette */
}

.page-about__light-bg {
    background-color: #f0f2f5;
    color: #333333;
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    text-align: center;
}

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

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

.page-about__hero-content {
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold for main title */
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-about__lead-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

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

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

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

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

.page-about__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-secondary {
    background: transparent;
    color: #11A84E; /* Main color */
    border: 2px solid #11A84E;
}

.page-about__btn-secondary:hover {
    background-color: #11A84E;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.3);
}

/* General Section Styles */
.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #11A84E; /* Main color for section titles */
}

.page-about__text-main {
    color: #F2FFF6; /* Text Main */
}

.page-about__text-secondary {
    color: #A7D9B8; /* Text Secondary */
}

.page-about__paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-about__text-link {
    color: #2AD16F;
    text-decoration: none;
    font-weight: 600;
}

.page-about__text-link:hover {
    text-decoration: underline;
}

/* History Section */
.page-about__history-section {
    padding: 80px 0;
}

.page-about__history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__history-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-about__history-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Values Section */
.page-about__values-section {
    padding: 80px 0;
}

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

.page-about__value-card {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #2E7A4E; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

/* Team Section */
.page-about__team-section {
    padding: 80px 0;
}

.page-about__team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__team-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-about__team-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Products & Services Section */
.page-about__products-services-section {
    padding: 80px 0;
}

.page-about__service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-about__service-item {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E; /* Border color */
    transition: transform 0.3s ease;
}

.page-about__service-item:hover {
    transform: translateY(-5px);
}

.page-about__service-icon {
    width: 100%;
    max-width: 250px; /* Adjust as needed, but min 200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-about__service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2C14E; /* Gold */
}

/* Technology & Security Section */
.page-about__tech-security-section {
    padding: 80px 0;
}

.page-about__tech-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__tech-security-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-about__tech-security-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Compliance Section */
.page-about__compliance-section {
    padding: 80px 0;
}

/* Vision Section */
.page-about__vision-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #2E7A4E; /* Border color */
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    user-select: none;
}

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom: 1px solid #1E3A2A;
}

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #A7D9B8; /* Text Secondary */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__history-grid,
    .page-about__team-grid,
    .page-about__tech-security-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-about__team-image-wrapper, .page-about__tech-security-image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
    }
    .page-about__hero-content {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 30px 15px;
    }

    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-about__lead-text {
        font-size: 1rem;
    }

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

    .page-about__cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-about__cta-buttons, .page-about__button-group, .page-about__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-about__paragraph {
        font-size: 0.95rem;
    }

    .page-about__values-grid,
    .page-about__service-list {
        grid-template-columns: 1fr;
    }

    .page-about__value-card,
    .page-about__service-item {
        padding: 25px;
    }

    /* Mobile image adaptation */
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-image-wrapper,
    .page-about__history-image-wrapper,
    .page-about__team-image-wrapper,
    .page-about__tech-security-image-wrapper,
    .page-about__service-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__hero-image,
    .page-about__history-image,
    .page-about__team-image,
    .page-about__tech-security-image,
    .page-about__service-icon {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-about__section-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        padding: 15px 20px;
    }
}