/* About Section Layout */
.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.about-header .tagline {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.about-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        flex: 1 1 100%;
    }

    .about-image img {
        max-width: 100%;
    }
}
