/* Wrapper for the header section */
.section-header-wrapper {
    background-color: #f8f9f9;
    border-bottom: 1px solid #e9e9e9;
    padding: 20px 0;
}

/* Inner container */
.section-header-inner {
    margin: 0 6%;
}

/* Heading style */
.section-main-heading {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-main-heading {
        font-size: 1.8rem;
    }

    .section-header-wrapper {
        padding: 25px 0;
    }
}

.cottages-section {
    padding: 40px 0;
}

/* Container for layout alignment */
.cottages-container {
    margin: 0 6%;
}

/* Flex row */
.cottages-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Image container */
.cottages-image {
    flex: 1 1 50%;
}

.cottages-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text container */
.cottages-description {
    flex: 1 1 50%;
    font-size: 16px;
    line-height: 1.6;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .cottages-row {
        flex-direction: column;
    }

    .cottages-image,
    .cottages-description {
        flex: 1 1 100%;
    }

    .cottages-section {
        padding: 25px 15px;
    }
}