/* General Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'Inter', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #0e0e0e;
    padding-top: 80px;
}

ul li {
    list-style: none;
    font-size: 14px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0e0e0e;
    padding: 20px 100px;
    z-index: 999;
    transition: padding 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

header.scrolled {
    padding: 10px 100px;
}

header.scrolled .logo {
    font-size: 20px;
    gap: 10px;
}

header.scrolled .logo img {
    height: 30px;
}

/* Burger menu style */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 17px;
    justify-content: space-between;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transform burger to cross when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.footer {
    background: #0e0e0e;
    color: white;
    padding: 0;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px 100px 40px;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left h4,
.footer-right h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-left p,
.footer-right p {
    margin: 8px 0;
    font-size: 14px;
}

.footer-left a,
.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
    padding: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy {
    margin: 0 100px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    header {
        padding: 20px 20px;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        right: 0;
        background: #0e0e0e;
        width: 200px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        border-radius: 8px 0 0 8px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.show {
        transform: translateX(0);
    }

    .nav-menu.scrolled {
        top: 60px;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 20px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .privacy-policy {
        margin: 0 20px;
    }
}