/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-header h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-mission {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-mission > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-mission h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-mission h3 i {
    color: #2a69ff;
    font-size: 1.4rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.value-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 2rem;
    color: #2a69ff;
    margin-bottom: 1.25rem;
    background: rgba(42, 105, 255, 0.1);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.value-card h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.counter {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.counter i {
    color: #2a69ff;
    font-size: 1.5rem;
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 105, 255, 0.1);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a69ff, #00c6ff);
}

.final-cta h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2a69ff;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(42, 105, 255, 0.2);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 105, 255, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 1.875rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .about-mission h3 {
        font-size: 1.375rem;
    }
    
    .value-card {
        padding: 1.5rem 1.25rem;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
    }
    
    .final-cta {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 1.625rem;
    }
    
    .about-mission h3 {
        font-size: 1.25rem;
    }
    
    .value-card h4 {
        font-size: 1.125rem;
    }
    
    .counter {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
}
