/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    flex: 1;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.about-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 3px;
}

.about-text {
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-feature {
    flex: 1 0 40%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.feature-text {
    font-weight: 500;
}

.about-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    bottom: -30px;
    left: -30px;
    border: 10px solid var(--light-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .about-img-wrapper {
        height: 450px;
    }
    
    .about-img-accent {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-content, .about-img {
        width: 100%;
    }
    
    .about-img-wrapper {
        height: 400px;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-features {
        gap: 1.5rem;
    }
    
    .about-feature {
        flex: 1 0 100%;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-img-wrapper {
       display: none;
    }
    
    .about-img-accent {
        width: 150px;
        height: 150px;
        bottom: -20px;
        left: -20px;
        border-width: 7px;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        margin-bottom: 1.5rem;
    }
    
    .about-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-img-wrapper {
        display: none;
    }
    
    .about-img-accent {
        width: 120px;
        height: 120px;
        border-radius: 15px;
        bottom: -15px;
        left: -15px;
        border-width: 5px;
    }
}

@media (max-width: 375px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-img-wrapper {
        height: 250px;
    }
    
    .about-img-accent {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        bottom: -10px;
        left: -10px;
    }
}