.about-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--gray);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}


.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image.show {
    transform: translateX(0);
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.05);
}