/* About Specific Styles */
.about-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header p {
    font-size: 20px;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.mission-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 64px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.mission-icon i {
    width: 40px;
    height: 40px;
}

.mission-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 18px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.values-section {
    margin-bottom: 64px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.value-icon i {
    width: 32px;
    height: 32px;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.how-it-works {
    margin-bottom: 64px;
}

.steps-container {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.step-item {
    display: flex;
    gap: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-gray-600);
    line-height: 1.6;
    font-size: 16px;
}

.stats-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 20px;
    padding: 64px 32px;
    margin-bottom: 64px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.faq-section {
    margin-bottom: 64px;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-800);
    flex: 1;
    margin-right: 16px;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--color-gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--color-gray-600);
    line-height: 1.6;
    font-size: 16px;
}

.contact-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-method i {
    width: 20px;
    height: 20px;
}

.about-cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 36px;
    }
    
    .about-header p {
        font-size: 18px;
    }
    
    .mission-section {
        padding: 32px 24px;
    }
    
    .mission-content h2 {
        font-size: 28px;
    }
    
    .mission-content p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-card .stat-number {
        font-size: 36px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-section,
    .about-cta {
        padding: 32px 24px;
    }
}