/* About Section Styles */
.about {
    background-color: var(--dark-accent);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom right, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
    transform: none;
    left: 0;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 240, 255, 0.3);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 240, 255, 0.2), transparent);
    pointer-events: none;
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .about-text {
        margin-bottom: var(--space-lg);
    }
    
    .about-text .section-title {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: var(--space-md);
    }
}