/* Reset & Base */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f1ec;
    color: #2c3e50;
}

header {
    background-color: #3e5c3a;
    color: #fff;
    padding: 2em;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-style: italic;
    margin-top: 0.5em;
}

/* Navigation */
nav {
    background-color: #d9cbb2;
    padding: 1em 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #3e5c3a;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #6b8e23;
}

/* Sections */
section {
    padding: 2em;
    max-width: 800px;
    margin: auto;
}

section h2 {
    color: #3e5c3a;
    border-bottom: 2px solid #d9cbb2;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

input, textarea {
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    background-color: #3e5c3a;
    color: white;
    border: none;
    padding: 0.75em;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #6b8e23;
}

/* Footer */
footer {
    background-color: #d9cbb2;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    color: #3e5c3a;
}

/* Contact Links */
a[href^="tel:"], a[href^="mailto:"] {
    color: #3e5c3a;
    font-weight: bold;
    text-decoration: none;
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
    text-decoration: underline;
    color: #6b8e23;
}

/* Responsive */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 1em;
    }

    header h1 {
        font-size: 2em;
    }
}