.page-about {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for general text, ensures good contrast on light backgrounds */
    line-height: 1.6;
}

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

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #0A2463, #3B5998); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 181, 5, 0.3) 0%, transparent 70%); /* Gold accent */
    transform: rotate(45deg);
    animation: page-about__float 10s ease-in-out infinite;
}

.page-about__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 181, 5, 0.3) 0%, transparent 70%); /* Gold accent */
    transform: rotate(-45deg);
    animation: page-about__float 10s ease-in-out infinite reverse;
}

@keyframes page-about__float {
    0% { transform: translate(0, 0) rotate(45deg); }
    50% { transform: translate(10px, 10px) rotate(50deg); }
    100% { transform: translate(0, 0) rotate(45deg); }
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505; /* Gold for emphasis on dark background, good contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0; /* Light grey on dark background, good contrast */
}

/* General Section Styles */
.page-about__mission-vision-section,
.page-about__expertise-section,
.page-about__trust-section,
.page-about__cta-section {
    padding: 80px 0;
}

.page-about__mission-vision-section {
    background-color: #f9f9f9; /* Light background */
}

.page-about__expertise-section {
    background-color: #FFFFFF; /* White background */
}

.page-about__trust-section {
    background-color: #f9f9f9; /* Light background */
}

.page-about__cta-section {
    background: #0A2463; /* Dark blue background */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 0;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue on light background, good contrast */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #E3B505; /* Gold accent */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-about__paragraph {
    font-size: 1.1em;
    color: #555555; /* Dark grey on light background, good contrast */
    margin-bottom: 20px;
}

.page-about__paragraph--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background-color: #E3B505; /* Gold background */
    color: #0A2463; /* Dark blue text on gold, good contrast */    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn--primary:hover {
    background-color: #FFD700; /* Slightly lighter gold */
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #E3B505; /* Gold text on dark background, good contrast */
    border: 2px solid #E3B505;
    margin-left: 20px;
}

.page-about__btn--secondary:hover {
    background-color: rgba(227, 181, 5, 0.1);
    transform: translateY(-3px);
}

/* Content Grid for Mission/Vision */
.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
    gap: 40px;
    align-items: center;
}

@media (min-width: 769px) {
    .page-about__content-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
    }
    .page-about__content-grid .page-about__text-content .page-about__section-title {
        text-align: left;
    }
    .page-about__content-grid .page-about__text-content .page-about__section-title::after {
        margin-left: 0;
    }
}

.page-about__image-wrapper {
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-about__team-member {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__team-member:hover {
    transform: translateY(-5px);
}

.page-about__team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #E3B505; /* Gold border */
}

.page-about__member-name {
    font-size: 1.5em;
    color: #0A2463; /* Dark blue on light background, good contrast */
    margin-bottom: 10px;
}

.page-about__member-role {
    color: #777777; /* Dark grey on light background, good contrast */
    font-size: 1em;
}

/* Features Grid (Trust Section) */
.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #E3B505; /* Gold for icons if they are SVG or font icons */
}

.page-about__feature-title, .page-about__feature-name {
    font-size: 1.5em;
    color: #0A2463; /* Dark blue on light background, good contrast */
    margin-bottom: 10px;
}

.page-about__feature-description {
    color: #777777; /* Dark grey on light background, good contrast */
    font-size: 1em;
}

/* CTA Section */
.page-about__cta-content {
    max-width: 800px;
}

.page-about__cta-title {
    font-size: 2.5em;
    color: #E3B505; /* Gold on dark blue background, good contrast */
    margin-bottom: 20px;
}

.page-about__cta-description {
    font-size: 1.2em;
    color: #F0F0F0; /* Light grey on dark blue background, good contrast */
    margin-bottom: 40px;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__section-title {
        font-size: 2em;
    }

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

    .page-about__content-grid .page-about__text-content,
    .page-about__content-grid .page-about__image-wrapper {
        text-align: center;
    }
    .page-about__content-grid .page-about__text-content .page-about__section-title {
        text-align: center;
    }
    .page-about__content-grid .page-about__text-content .page-about__section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .page-about__team-grid,
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }

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

    .page-about__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* JS-triggered fade-in animation styles */
.page-about [style*="opacity: 0"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about--fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}