body {
    background-color: #fcf9f5;
    font-family: 'Poppins', sans-serif;
    color: #4A3728;
}

.overons-header {
    padding: 80px 20px;
    text-align: center;
    background-color: #eae1d7;
}

.overons-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

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

.info-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.text-box {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(74, 55, 40, 0.05);
    border-left: 5px solid #C5A059; 
}

.text-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #C5A059;
}

.text-box p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #4A3728;
    color: #eae1d7;
}

@media (max-width: 768px) {
    .info-row, .info-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-box img {
        height: 300px;
    }
    
    .text-box {
        padding: 30px;
    }
}