body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fdf2e9;
    transition: background-color 0.3s ease;
}

header {
    background-color: #ffffff;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.site-logo {
    height: 40px;
    filter: contrast(1.2);
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.1);
}

nav {
    position: relative;
}

.nav-list {
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    right: 0;
    background-color: #fff;
    padding: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.nav-list.show {
    opacity: 1;
    visibility: visible;
}

nav a {
    text-decoration: none;
    color: #d17b0f;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #b05e0b;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #d17b0f;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

.cta-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #d17b0f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #b05e0b;
    transform: scale(1.05);
}

#hero {
    background: linear-gradient(to right, #fecb89, #f59d3e);
    color: #fff;
    padding: 2em 1em;
    text-align: center;
    transition: background 0.3s ease;
}

#hero img {
    width: 100%;
    max-width: 300px;
    margin-top: 1em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#hero img:hover {
    transform: scale(1.1);
}

.value-proposition {
    font-size: 1.2em;
    margin-top: 1em;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 2em 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: left;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 2em 0;
}

.service-item {
    background-color: #fff5e1;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item img {
    width: 100%;
    max-width: 100px;
    margin-top: 0.5em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.chat-toggle {
    background-color: #d17b0f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5em 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-toggle:hover {
    background-color: #b05e0b;
}

.chat-window {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 1em;
    width: 300px;
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.chat-window.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.hidden {
    display: none;
}

#contact-form {
    margin-top: 2em;
}

#contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
}

#contact-form button {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #d17b0f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact-form button:hover {
    background-color: #b05e0b;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    header {
        padding: 1em 4em;
    }
    .site-logo {
        height: 60px;
    }
    .nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }
    #hero img {
        max-width: 500px;
    }
    .service-list {
        flex-direction: row;
        justify-content: space-between;
    }
}
