.about-section {
    background-color: #fefefe;
    padding: 60px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image-column,
.about-content-column {
    flex: 1;
    min-width: 300px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-text {
    color: #768071;
    font-size: 1.2rem;
}

.about-content {
    max-width: 500px;
}

.about-title {
    font-size: 2.2rem;
    color: #323232;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
        padding-bottom: 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-column,
    .about-content-column {
        flex: none;
        width: 100%;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-text {
        font-size: 1rem;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }

    .about-container {
        padding: 0 30px;
    }
}