body {
    background-color: #f8fafc !important;
}

.dropdown-wrapper {
    position: relative;
}

.site-left-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.site-right-wrapper {
    display: flex;
    gap: 25px;
}

.nav-link-dropdown {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    user-select: none;
    padding: 8px 0;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 15px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    z-index: 100;
    animation: slideUp 0.2s ease;
}

.dropdown-panel.is-active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #222222;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f9f9f9;
}

.nav-link-dropdown svg {
    transition: transform 0.3s ease;
}

.nav-link-dropdown.is-active svg {
    transform: rotate(180deg);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.about-footer {
    border-top: 1px solid whitesmoke;
    color: #64748b;
    background: #fff;
    margin-top: 24px;
    padding: 20px 36px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-center a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-center a:hover {
    color: #121212;
    text-decoration: underline;
}

.footer-right {
    text-align: right;
    line-height: 1.5;
    font-size: 11px;
}

@media (max-width: 992px) {
    .header-top {
        position: relative;
        z-index: 1001;
        background: #fff;
    }

    .dropdown-wrapper {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .site-right-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        z-index: 999;
        box-shadow: none;
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 1;
        visibility: visible;
        pointer-events: none;
    }

    .header-top.menu-open .site-right-wrapper {
        clip-path: inset(0 0 0 0);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        pointer-events: auto;
    }

    .nav-link-dropdown {
        width: 100%;
        padding: 16px 20px;
        justify-content: space-between;
    }

    .dropdown-panel {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        transform: none;
        animation: none;
    }

    .dropdown-item {
        padding: 14px 40px;
    }

    .about-footer {
        padding: 16px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 8px;
    }

    .footer-center {
        gap: 12px;
    }

    .footer-right {
        text-align: center;
    }
}