.fullWidthContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.contentArea {
    background-color: #fff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.heroSection {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/cottage-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white !important;
    padding: 80px 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
}

.heroSection h1, 
.heroSection p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.heroSection h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.valueSection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.valueItem {
    flex: 1 1 250px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.valueItem i {
    color: #4a89dc;
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .heroSection {
        padding: 50px 20px;
    }
    
    .heroSection h1 {
        font-size: 2rem;
    }
    
    .contentArea {
        padding: 20px;
    }
}