* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #3b1f0f;
    background-color: #fdf3e7;
}

header {
    background-color: #7b3f1e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #f4a460;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    background: linear-gradient(135deg, #c0642a 0%, #8b3a1a 100%);
    color: white;
    padding: 0.75rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 30%;
    margin-bottom: 0.4rem;
    border-radius: 10px;
    display: block;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.content {
    margin-bottom: 3rem;
}

.content h2 {
    color: #7b3f1e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fde8d0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #c0642a;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #c0642a;
    box-shadow: 0 0 5px rgba(192, 100, 42, 0.3);
}

.btn {
    background-color: #c0642a;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #8b3a1a;
}

.book-btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #7b3f1e;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.book-btn:hover {
    background-color: #fde8d0;
    transform: scale(1.05);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-actions .book-btn {
    margin-top: 0.25rem;
}


.services-wrapper {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.services-image {
    flex: 0 0 380px;
}

.services-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: block;
    margin-bottom: 1rem;
}

.img-first {
    height: 400px;
}

.img-second {
    height: 300px;
}

.img-third {
    height: 300px;
}

.services-list {
    flex: 1;
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item {
    background: #fde8d0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #c0642a;
}

.service-item h3 {
    color: #7b3f1e;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    padding: 0.75rem 0;
    color: #8b3a1a;
    font-size: 1.4rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.pricing-list li:before {
    content: "• ";
    margin-right: 0.5rem;
    color: #c0642a;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #c0642a;
}

.map-section {
    margin-top: 1rem;
}

.map-note {
    margin-bottom: 0.75rem;
    color: #7b3f1e;
}

.map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border: 2px solid #e5c3a1;
}

.map-frame iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

footer {
    background-color: #7b3f1e;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    main {
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .hero-image {
        height: 190px;
        border-radius: 8px;
        object-position: 48% 30%;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .hero-actions .book-btn {
        width: 100%;
        margin-top: 0;
        text-align: center;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .services-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-image {
        flex: 0 0 auto;
    }

    .img-first,
    .img-second,
    .img-third {
        height: auto;
        object-fit: contain;
    }

    .services-list {
        padding-left: 0;
    }

    .service-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .pricing-list li {
        font-size: 1.05rem;
        letter-spacing: 0.01em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .map-frame iframe {
        height: 280px;
    }
}
