.site-header,
.site-footer {
    background-color: white;
}

.site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.site-header .logo,
.site-footer .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
}

.site-header .logo-text,
.site-footer .logo-text {
    font-size: 24px;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    width: auto;
}

.site-nav .menu-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
}

.site-nav .menu-dropdown-details {
    position: relative;
}

.site-nav .menu-dropdown-details summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--light);
    transition: color 0.3s, background 0.3s, transform 0.3s;
}

.site-nav .menu-dropdown-details summary::-webkit-details-marker {
    display: none;
}

.site-nav .menu-dropdown-details summary:hover,
.site-nav .menu-dropdown-details[open] summary {
    color: var(--primary);
    background: var(--light-blue);
}

.site-nav .menu-dropdown-list {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 230px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 10;
}

.site-nav .menu-dropdown-details[open] .menu-dropdown-list {
    display: block;
}

.site-nav .menu-dropdown-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
}

.site-nav .menu-dropdown-list a:hover {
    background: var(--light-blue);
    color: var(--primary);
}

.page-anchor-nav {
    background: linear-gradient(180deg, rgba(230, 247, 255, 0.72), rgba(248, 249, 250, 0.96));
    border-bottom: 1px solid var(--light-gray);
}

.page-anchor-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
}

.page-anchor-nav-inner a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: white;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
}

.page-anchor-nav-inner a:hover {
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.site-footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
}

.site-footer .logo {
    color: white;
    margin: 0;
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.site-footer .footer-column {
    flex: 1 1 250px;
    margin-bottom: 30px;
}

.site-footer .footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer .footer-column ul {
    list-style: none;
    padding-left: 0;
}

.site-footer .footer-column ul li {
    margin-bottom: 10px;
    padding-left: 0;
}

.site-footer .footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-column ul li a:hover {
    color: var(--accent);
}

.site-footer .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.site-footer .contact-info svg {
    margin-right: 10px;
}

.site-footer .copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-note {
    margin-top: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .site-header .header-content {
        flex-wrap: wrap;
    }

    .site-nav {
        width: auto;
        justify-content: flex-end;
        order: 0;
    }
}
