.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-image-container {
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
                0 6px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
    width: 300px;
    height: 400px;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15),
                0 8px 8px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-title {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .about-content {
        gap: 2rem;
    }

    .about-image-container {
        width: 250px;
        height: 333px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .about-image-container {
        width: 280px;
        height: 373px;
        margin: 0 auto;
    }

    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-image-container {
        width: 240px;
        height: 320px;
    }

    .about-title {
        font-size: 1.5rem;
    }
}
