   <style>/* About Section Layout */
.about-section {
    padding: 60px 0;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

/* Two-column layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
}

.about-text h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-image {
    flex: 1 1 400px;
    text-align: right;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-image {
        text-align: center;
    }

    .about-text {
        flex: 1 1 100%;
    }
}
</style>