/* About Section */
#about {
    padding: 80px 20px;
    margin: 0 auto;
}

.about-container {
    max-width: var(--width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}