/* General styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f4e6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #8B4513;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6d330f;
}

.section {
    padding: 60px 0;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #5C4033;
}

/* Header */
.header {
    background-color: #5C4033;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #D2B48C;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* About Section */
.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Advantages Section */
.advantages {
    background-color: #f0e7d6;
}

.advantages__grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-item {
    text-align: center;
    flex-basis: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.advantage-item img {
    width: 80px;
    margin-bottom: 15px;
}

/* Services Section */
.services__grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    flex-basis: 300px;
}

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Prices Section */
.prices table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.prices th, .prices td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: left;
}

.prices th {
    background-color: #5C4033;
    color: #fff;
}

.prices tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Reviews Section */
.reviews {
    background-color: #f0e7d6;
}

.review-item {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.review-item p {
    font-style: italic;
    font-size: 18px;
}

.review-author {
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Section */
.contact__content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.contact__info, .contact__form {
    flex-basis: 45%;
}

.contact__form label {
    display: block;
    margin-bottom: 5px;
}

.contact__form input, .contact__form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact__form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #5C4033;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
@media (max-width: 768px) {
            .img_banner {
        max-width: 100%;
        height: auto;
        margin-bottom: 400px;
            }
        }