body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #cfe5fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 6rem auto 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
}

/* Navigation Styles */
.top-nav {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
    z-index: 30; /* Ensure nav is above logo */
    pointer-events: none; /* Allow clicks through empty areas */
}

.nav-group {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    pointer-events: auto; /* Re-enable clicks on links */
}

.nav-group.left {
    padding-right: 70px;
    justify-content: flex-end;
    flex: 1;
}

.nav-group.right {
    padding-left: 70px;
    justify-content: flex-start;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #fff;
    color: #4e8d7c;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #444;
    cursor: pointer;
    z-index: 30;
    padding: 0.5rem;
    line-height: 1;
    pointer-events: auto;
}

.services {
    margin: 2rem 0;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4e8d7c;
    font-weight: bold;
}

.contact {
    margin-top: 2rem;
    font-size: 1.1rem;
    background: #f1f8f6;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.dog-img {
    width: 120px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 20;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 40px;
    height: 40px;
}

.footer-text {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    white-space: nowrap;
}

.footer-text a {
    color: #888;
    text-decoration: none;
}

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

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 1rem;
    }

    .top-nav {
        top: -80px; /* Adjust position relative to container */
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .nav-group {
        display: none; /* Hide links by default */
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .nav-group.left,
    .nav-group.right {
        padding: 0;
        justify-content: center;
        flex: none;
    }

    /* When menu is open */
    .top-nav.open .nav-group {
        display: flex;
        z-index: 25; /* Above logo */
        position: relative;
        top: 40px; /* Push down below toggle */
    }

    .top-nav.open .nav-group.left {
        border-bottom: 1px solid #eee;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .top-nav.open .nav-group.right {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        border-radius: 0;
        padding: 1rem;
        background: #fff;
    }

    .nav-link:hover {
        background: #f0f0f0;
    }

    .dog-img {
        /* When menu is open, we might want to hide logo or push it,
           but let's just let the menu cover it if needed or sit above.
           With z-index 25 on nav-group, it should cover logo (z-index 20). */
    }
}
