html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

body {
    padding-top: 105px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: white;
    color: white;
    padding: 15px 0;
    min-height: 75px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(21, 20, 29, 0.15);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a {
    background: rgba(255, 255, 255, 0.08);
    color: #183880;
    display: block;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    background: #183880;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.dropdown > a::after {
    content: "▼";
    display: inline-block;
    margin-left: 8px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 28px);
    left: 0;
    min-width: 375px;
    background: white;
    list-style: none;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    z-index: 1000;
}

.dropdown-menu2 {
    display: none;
    position: absolute;
    top: calc(100% + 28px);
    left: 0;
    min-width: 180px;
    background: white;
    list-style: none;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    z-index: 1000;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 28px;
}

.dropdown-menu li a {
    color: #1f2937;
    padding: 12px 14px;
    border-radius: 10px;
    background: transparent;
}

.dropdown-menu li a:hover {
    background: #c6c6c6;
    color: #1f2937;
    box-shadow: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu2 li a {
    color: #1f2937;
    padding: 12px 14px;
    border-radius: 10px;
    background: transparent;
}

.dropdown-menu2 li a:hover {
    background: #c6c6c6;
    color: #1f2937;
    box-shadow: none;
}

.dropdown:hover .dropdown-menu2,
.dropdown-menu2:hover {
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    background: #183880;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
}

.cookie-banner {
    position: fixed;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 10000;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    background: white;
    color: #1f2937;
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.cookie-content {
    max-width: 800px;
}

.cookie-banner h3 {
    margin-bottom: 8px;
    color: #183880;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions button {
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

#acceptCookies {
    background: #183880;
    color: white;
}

.cookie-actions button:hover {
    transform: translateY(-2px);
}

.menu-highlight {
    transition: 0.3s ease;
    border-radius: 6px;
    padding: 1px 1px;
}

.dropdown-menu li a:hover .menu-highlight {
    background: #183880;
    color: white;
}

.service-card:hover .menu-highlight {
    background: #183880;
    color: white;
}

footer {
    background: #1f2937;
    color: white;
    padding: 28px 0;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-center {
    text-align: center;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

@media (max-width: 900px) {
    header .container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        padding: 12px 14px;
    }
}
