/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

/* Page Header with Gradient Background */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(245, 158, 11, 0.15) 50%, 
        rgba(249, 115, 22, 0.1) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(245, 158, 11, 0.12) 50%, 
        rgba(249, 115, 22, 0.08) 100%);
}

[data-theme="dark"] .page-header::before {
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* About Story Section */
.about-story {
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(245, 158, 11, 0.15) 50%, 
        rgba(249, 115, 22, 0.1) 100%);
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .about-story {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(245, 158, 11, 0.12) 50%, 
        rgba(249, 115, 22, 0.08) 100%);
}

[data-theme="dark"] .about-story::before {
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.about-story .container {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.about-content {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.about-text {
    text-align: center;
}

.about-text .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.about-text .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.image-placeholder svg {
    color: var(--text-tertiary);
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon svg {
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(245, 158, 11, 0.05) 50%, 
        rgba(249, 115, 22, 0.03) 100%);
}

[data-theme="dark"] .founder-section {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(245, 158, 11, 0.03) 50%, 
        rgba(249, 115, 22, 0.02) 100%);
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.founder-avatar {
    width: 126px;
    height: 137px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-avatar svg {
    color: white;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.founder-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
}

.founder-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-bio strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Core Values */
.core-values {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header-centered .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-immersive {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.value-immersive:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.value-immersive:last-child {
    margin-bottom: 0;
}

.value-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.6s ease;
}

.value-immersive:hover .value-bg {
    transform: scale(1.05);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

[data-theme="dark"] .value-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.value-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
}

.value-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.value-content h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.value-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0 4rem;
    background: var(--bg-primary);
    position: relative;
}

[data-theme="dark"] .testimonials-section {
    background: linear-gradient(135deg, #0F172A 0%, #000000 100%);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
}

[data-theme="dark"] .testimonials-section .section-header {
    background: transparent;
}

.testimonials-section .section-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

[data-theme="dark"] .testimonials-section .section-title {
    color: white;
}

.testimonials-section .title-highlight {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    max-height: 400px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonials-column-left {
    animation-name: slideUp;
}

.testimonials-column-right {
    animation-name: slideDown;
}

@keyframes slideUp {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -50%, 0);
    }
}

@keyframes slideDown {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.testimonials-column:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    display: none;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

[data-theme="dark"] .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

[data-theme="dark"] .testimonial-author {
    color: rgba(255, 255, 255, 0.6);
}

.author-name {
    color: #F59E0B;
    font-weight: 600;
}

/* Giving Back to Society Section */
.giving-back-section {
    padding: 6rem 0;
    background: #e8eef5;
}

[data-theme="dark"] .giving-back-section {
    background: #0f1419;
}

.giving-back-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mou-section {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.mou-section h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.mou-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.philosophy {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.mou-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.mou-text-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.mou-text-content h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.mou-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mou-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.initiative-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.initiative-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.initiative-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.initiative-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.target-audience {
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
    font-size: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mou-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 2rem;
}

.mou-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mou-image:hover {
    transform: scale(1.02);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #c3ced8 0%, #3a78c9 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 169, 76, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #F59E0B;
    border: 2px solid white;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive - About Page */
@media (max-width: 1024px) {
    .about-content {
        padding: 3rem;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-immersive {
        height: 350px;
    }
    
    .value-content {
        padding: 2rem 2.5rem;
    }
    
    .value-content h3 {
        font-size: 2rem;
    }
    
    .value-content p {
        font-size: 0.95rem;
    }
    
    .philosophy {
        font-size: 1rem;
    }
    
    .mou-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .mou-text-content {
        display: flex;
        flex-direction: column;
    }
    
    .mou-text-content h4 {
        order: 1;
    }
    
    .mou-text-content > p:first-of-type {
        order: 2;
    }
    
    .mou-image-wrapper {
        order: 3;
        position: relative;
        top: 0;
    }
    
    .mou-text-content .initiatives-grid {
        order: 4;
    }
    
    .mou-text-content .target-audience {
        order: 5;
    }
    
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 4rem 0;
    }
    
    .about-content {
        padding: 2.5rem;
    }
    
    .about-text .section-title {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .founder-avatar {
        width: 100px;
        height: 100px;
    }
    
    .founder-name {
        font-size: 1.75rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .founder-bio p {
        font-size: 0.95rem;
    }
    
    .core-values {
        padding: 4rem 1rem;
    }
    
    .value-immersive {
        height: 320px;
    }
    
    .value-content {
        padding: 1.75rem 2rem;
    }
    
    .value-content h3 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .value-content h3::after {
        width: 50px;
        height: 3px;
        margin-top: 0.5rem;
    }
    
    .value-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .mou-section {
        padding: 2rem;
    }
    
    .mou-section h3 {
        font-size: 1.5rem;
    }
    
    .philosophy {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .mou-text-content h4 {
        font-size: 1.25rem;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header-centered {
        margin-bottom: 3rem;
    }
    
    .section-header-centered .section-title {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding: 8rem 0;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-text .section-title {
        font-size: 1.5rem;
    }
    
    .about-text .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .founder-section {
        padding: 4rem 0;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-header {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-avatar {
        width: 80px;
        height: 80px;
    }
    
    .founder-avatar svg {
        width: 60px;
        height: 60px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-title {
        font-size: 0.95rem;
    }
    
    .founder-bio p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .core-values {
        padding: 3rem 1rem;
    }
    
    .value-immersive {
        height: 280px;
    }
    
    .value-content {
        padding: 1.5rem;
    }
    
    .value-content h3 {
        font-size: 1.5rem;
    }
    
    .value-content h3::after {
        width: 40px;
        margin-top: 0.5rem;
    }
    
    .value-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .giving-back-section {
        padding: 4rem 0;
    }
    
    .mou-section {
        padding: 1.5rem;
    }
    
    .mou-section h3 {
        font-size: 1.25rem;
    }
    
    .philosophy {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .mou-text-content h4 {
        font-size: 1.125rem;
    }
    
    .mou-text-content p {
        font-size: 0.9rem;
    }
    
    .initiative-item {
        padding: 0.875rem;
    }
    
    .initiative-item span {
        font-size: 0.875rem;
    }
    
    .target-audience {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .section-header-centered .section-title {
        font-size: 1.75rem;
    }
    
    .section-header-centered .section-description {
        font-size: 1rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        max-width: 500px;
        max-height: 400px;
    }
    
    .testimonials-column {
        animation-duration: 20s;
    }
    
    .testimonials-column-left {
        animation-name: slideUp;
    }
    
    .testimonials-column-right {
        display: none;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonials-section .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}
