/* ... (el resto del CSS anterior sigue igual) ... */

/* About Section Styles */
.about-section {
    padding: 60px 20px;
    background-color: #fff;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 2;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: #6c5ce7;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #6c5ce7;
    font-size: 1.2rem;
}

.steps-list {
    padding-left: 20px;
    margin: 20px 0 30px;
    font-size: 1rem;
}

.steps-list li {
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}