* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-separator {
    width: 1px;
    height: 20px;
    background: #e5e7eb;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-nav a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2f91e7;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.header-nav a:hover {
    color: #2f91e7;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    transform: scaleX(1);
}

.header-nav a.active {
    color: #2f91e7;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2f91e7;
    display: flex;
    align-items: center;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.logo-svg {
    height: 51px;
    width: auto;
    display: block;
}

.logo-svg text {
    fill: #02090f;
}

.logo-svg path {
    stroke: #2f91e7;
}

.trust-badge {
    font-size: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #6b7280;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    z-index: 100;
}

.mobile-menu.active {
    right: 0;
}

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

.mobile-menu nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    color: #2f91e7;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo-svg {
    height: 46px;
    width: auto;
}

footer p {
    font-size: 14px;
    margin: 0;
}

/* Buttons */
.btn {
    background: #2f91e7;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(47, 145, 231, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1e7bc8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 145, 231, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
    header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .header-nav,
    .header-separator,
    .trust-badge {
        display: none !important;
    }

    .hamburger,
    .mobile-menu,
    .menu-overlay {
        display: flex;
    }

    .logo-svg {
        height: 35px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }

    .header-content {
        align-items: center;
        text-align: center;
    }

    .logo {
        margin: 0 0 0 -8px;
        padding: 0;
    }

    .logo-svg {
        height: 33px;
        margin: 0;
        display: block;
    }

    footer p {
        font-size: 11px;
    }

    .footer-logo-svg {
        height: 32px;
    }
}
