/* Fix for About section visibility issues */
#about {
    display: block !important;
    visibility: visible !important;
    background-color: #f0f4ff;
    padding: 50px 0;
    margin: 0;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-text-wrapper,
.about-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.about-text-wrapper {
    padding: 15px;
}

.about-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.about-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.feature-icon {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 5px;
}

.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0d6efd;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #0d6efd;
    margin-top: 15px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.image-item {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.main-image {
    grid-column: span 2;
    height: 250px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: all 0.3s;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-heading h2 {
        font-size: 28px;
    }
    
    .about-stats {
        justify-content: space-between;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}