/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #4a90e2;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333333;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    scroll-behavior: smooth;
}

.about-page-container {
    width: 100%;
    overflow-x: hidden;
}

.about-page-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-content-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

/* Header Section */
.about-page-header-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    text-align: center;
    position: relative;
    padding: 150px 20px 100px;
}

.about-page-header-shield-icon {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    opacity: 0.1;
    color: var(--light-color);
}

.about-page-header-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.about-page-header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-page-header-particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background-color: var(--white-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-60px) translateX(0) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.2;
    }
}

.about-page-header-shield-large {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
}

.about-page-header-title {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.about-page-header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Intro Section */
.about-page-intro-section {
    background-color: var(--white-color);
    position: relative;
    z-index: 5;
}

.about-page-intro-left-decorator {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0.15), transparent),
                linear-gradient(180deg, rgba(0, 86, 179, 0), transparent 50%);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

.about-page-intro-right-circle {
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.15);
}

.about-page-intro-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-page-intro-floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
    animation: floatIcon 20s linear infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.about-page-intro-background-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(var(--light-color) 3px, transparent 1px), 
                      linear-gradient(90deg, var(--light-color) 3px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.about-page-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-page-intro-greeting {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.about-page-intro-greeting::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-page-intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.about-page-intro-photo-container {
    position: relative;
    margin-bottom: 30px;
}

.about-page-intro-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about-page-intro-photo-placeholder {
    font-size: 6rem;
    color: var(--primary-color);
}

.about-page-intro-photo-ring {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinRing 30s linear infinite;
    opacity: 0.3;
}

.about-page-intro-photo-sparkle {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 3;
    opacity: 0.7;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.9;
    }
}

.about-page-intro-photo img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Story Section */
.about-page-story-section {
    background-color: #f3f7fc;
    position: relative;
}

.about-page-story-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
}

.about-page-story-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056b3' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5V0zm1 5v1H5v-1h1z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}

.about-page-story-section-shield {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 8rem;
    color: rgba(0, 86, 179, 0.05);
    transform: rotate(-15deg);
    z-index: 0;
}

.about-page-story-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-page-story-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-page-story-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.about-page-story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.about-page-story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--accent-color);
}

.about-page-story-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.about-page-story-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    margin-left: auto;
}

.about-page-story-item::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.about-page-story-item:nth-child(even)::before {
    right: auto;
    left: -10px;
}

.about-page-story-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(74, 144, 226, 0.2);
}

.about-page-story-connector {
    position: absolute;
    top: 25px;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    z-index: 1;
}

.about-page-story-item:nth-child(even) .about-page-story-connector {
    right: auto;
    left: 0;
}

.about-page-story-content {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    border-left: 3px solid transparent;
}

.about-page-story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--accent-color);
}

.about-page-story-icon {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-page-story-header-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

/* Mission Section */
.about-page-mission-section {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.about-page-mission-bg-shape {
    position: absolute;
    right: -150px;
    top: -150px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 86, 179, 0.03);
    transform: rotate(45deg);
}

.about-page-mission-bg-shape-2 {
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.03);
}

.about-page-mission-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 86, 179, 0.03) 1px, transparent 1px);
    background-size: 50px 100%;
    opacity: 0.5;
}

.about-page-mission-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-page-mission-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.about-page-mission-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--dark-color);
}

.about-page-mission-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.about-page-mission-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.about-page-mission-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.about-page-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-page-mission-card:hover::before {
    opacity: 1;
}

.about-page-mission-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-size: cover;
    z-index: 0;
}

.about-page-mission-card-bg-1 {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23003366' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-page-mission-card-bg-2 {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056b3' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='9' cy='6' r='3'/%3E%3Ccircle cx='11' cy='8' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.about-page-mission-card-bg-3 {
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90e2' fill-opacity='1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-page-mission-card-content {
    position: relative;
    z-index: 1;
}

.about-page-mission-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page-mission-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-page-mission-card-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Closing Section */
.about-page-closing-section {
    background-color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%),
                      linear-gradient(315deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%),
                      linear-gradient(45deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 0, 20px -20px, 0px 20px;
}

.about-page-closing-floating-shield {
    position: absolute;
    font-size: 15rem;
    color: rgba(0, 86, 179, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-page-closing-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.about-page-closing-floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
    animation: floatingIcon 15s infinite linear;
}

@keyframes floatingIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.about-page-closing-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-page-closing-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-page-closing-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-page-closing-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 30px;
}

.about-page-closing-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 5px;
}

.about-page-closing-cta-container {
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.about-page-closing-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-page-closing-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.about-page-closing-cta::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.about-page-closing-cta:hover::after {
    left: 100%;
}

.about-page-closing-cta-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100%);
    height: calc(100%);
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transform-origin: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-page-closing-cta-container:hover .about-page-closing-cta-ring {
    opacity: 0.3;
    animation: pulseCTA 2s infinite;
}

@keyframes pulseCTA {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-page-header-title {
        font-size: 2.5rem;
    }

    .about-page-header-subtitle {
        font-size: 1.2rem;
    }

    .about-page-story-timeline::before {
        left: 30px;
    }

    .about-page-story-item {
        width: 100%;
        padding-right: 0;
        padding-left: 60px;
        justify-content: flex-start;
    }

    .about-page-story-item:nth-child(even) {
        padding-left: 60px;
    }

    .about-page-story-item::before,
    .about-page-story-item:nth-child(even)::before {
        left: 20px;
    }

    .about-page-mission-content {
        flex-direction: column;
        align-items: center;
    }

    .about-page-mission-card {
        width: 100%;
    }
}

/* Animation Classes */
.about-page-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page-delay-1 {
    animation-delay: 0.2s;
}

.about-page-delay-2 {
    animation-delay: 0.4s;
}

.about-page-delay-3 {
    animation-delay: 0.6s;
}

.about-page-pulse {
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hover Effects and Visual Elements */
.about-page-text-highlight {
    position: relative;
    display: inline-block;
}

.about-page-text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(74, 144, 226, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.about-page-text-highlight:hover::after {
    height: 80%;
}

.about-page-quotes-section {
    background-color: var(--light-color);
    padding: 0;
    position: relative;
}

/* Interactive Quote Box */
.about-page-quote-box {
    background-color: rgba(0, 86, 179, 0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.about-page-quote-box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-page-quote-mark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.about-page-quote-text {
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Linked Text Animation */
.about-page-linked-text {
    color: var(--primary-color);
    position: relative;
    text-decoration: none;
    font-weight: 500;
}

.about-page-linked-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.about-page-linked-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Interactive Timeline Effects */
.about-page-timeline-date {
    position: absolute;
    top: -40px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-page-story-item:nth-child(even) .about-page-timeline-date {
    right: auto;
    left: 30px;
}

.about-page-story-item:hover .about-page-timeline-date {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Testimonial Slider */
.about-page-testimonials-section {
    padding: 80px 0;
    background-color: var(--white-color);
    position: relative;
}

.about-page-testimonials-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    position: relative;
}

.about-page-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-page-testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about-page-testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 0 20px;
    position: relative;
    z-index: 2;
}

.about-page-testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.about-page-testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--accent-color);
}

.about-page-testimonial-author {
    display: flex;
    align-items: center;
}

.about-page-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.about-page-testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-page-testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.about-page-testimonial-name {
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.about-page-testimonial-position {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.about-page-testimonial-decoration {
    position: absolute;
    font-size: 6rem;
    right: 30px;
    bottom: 20px;
    color: rgba(0, 86, 179, 0.05);
    z-index: 1;
}

/* Partners Section */
.about-page-partners-section {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.about-page-partners-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.about-page-partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-page-partner-logo {
    width: 150px;
    height: 80px;
    background-color: var(--white-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-page-partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-page-partner-icon {
    font-size: 2rem;
    color: var(--dark-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-page-stats-container {
        flex-direction: column;
    }

    .about-page-stat-item {
        margin-bottom: 30px;
    }

    .about-page-partners-container {
        gap: 20px;
    }

    .about-page-partner-logo {
        width: 120px;
        height: 60px;
    }

    .about-page-timeline-date {
        right: auto;
        left: 0 !important;
    }

    .about-page-story-connector {
        display: none;
    }
}