
.about-section {
    padding: 80px 0;
    background-color: #FFF6EB;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-title {
    font-family: 'pacifico', cursive;
    font-size: 4rem;
    color: #A5682A;
    text-align: center;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-family: 'pacifico', cursive;
    font-size: 2.5rem;
    color: #A5682A;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container h2 {
    font-family: 'pacifico', cursive;
    font-size: 2.5rem;
    color: #A5682A;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section-no-margin {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
