/* About Section Styling */
.about-section {
    width: 100%;
    padding: 60px 10%;
    background: white;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-image {
    flex: 1;
    max-width: 500px;
    animation: floatImage 1s ease-in-out;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    animation: floatText 1s ease-in-out;
}

.about-text h3 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    background: linear-gradient(135deg, #4A90E2, #007AFF);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 5%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }
}
