body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f4efe6;
    color: #333;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
}

header {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    gap: 20px;
}

    nav a {
        text-decoration: none;
        color: #333;
        margin-left: 20px;
        font-weight: 500;
    }

.hero {
    background: #e9e2d6;
    text-align: center;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero h2 {
        font-size: 20px;
        font-weight: normal;
        margin-top: 0;
        color: #5f6658;
    }

    .hero p {
        max-width: 680px;
        margin: 20px auto 0;
        font-size: 18px;
    }

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    background: #7a8c6d;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.section {
    background: white;
    margin-top: 20px;
}

    .section h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

.grid-two {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.card {
    background: #fafafa;
    padding: 24px;
    border-radius: 8px;
}

.prices {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.price-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.contact {
    background: #e9e2d6;
    padding: 60px 20px;
}

.contact-wrap {
    max-width: 1000px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

form {
    background: white;
    padding: 24px;
    border-radius: 8px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, textarea, select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.references-list a {
    display: block;
    margin-bottom: 10px;
    color: #6b7d5f;
    text-decoration: none;
}

    .references-list a:hover {
        text-decoration: underline;
    }

.practice-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

    .practice-gallery img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

.practitioner-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #777;
}

    footer a {
        color: inherit;
        text-decoration: none;
        cursor: pointer;
    }

        footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 800px) {

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

        nav a {
            margin-left: 0;
            margin-right: 16px;
        }

    .grid-two,
    .contact-grid,
    .practice-gallery {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .practice-gallery img {
        height: 260px;
    }

    .practitioner-photo {
        height: 380px;
    }
}
