.about-section {
    padding: 80px 0;
    background-color: #f2f3e9; /* Light mint green background like in the reference */
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 0 0 30%;
    position: relative;
}

.about-image img {
    width: 70%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.about-content {
    flex: 0 0 50%;
    padding: 30px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.about-title:after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: #b8a06a; /* Gold accent color */
    position: absolute;
    bottom: -10px;
    left: 0;
}

.about-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.about-link {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    border-bottom: 1px solid #b8a06a;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-link:hover {
    color: #b8a06a;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image, .about-content {
        flex: 0 0 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-description {
        font-size: 15px;
    }
}