@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0B1F3B;
    --secondary: #FF4D2E;
    --accent: #2EC4B6;
    --bg: #F6F8FB;
    --text: #111827;
    --border: #E5E7EB;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-img {
    height: 50px;
}

.logo-img-footer {
    height: 100px;
}

.nav-toggle {
    display: none;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav a {
    font-weight: 500;
    color: var(--primary);
}

.nav a:hover {
    color: var(--secondary);
}

.hero {
    padding: 60px 0;
    background: var(--bg);
}

.small-hero {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-text h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-highlights {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.hero-highlights h3 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background: var(--bg);
}

.bg-dark {
    background: var(--primary);
}

.text-light {
    color: var(--white);
}

.two-col {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 24px;
}

.card {
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 24px;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

.section-media {
    margin-top: 24px;
}

.list {
    list-style: disc;
    padding-left: 20px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
}

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

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer a {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 24px;
    padding-top: 16px;
    text-align: center;
}

.summary-box {
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
    background: var(--bg);
    margin-top: 24px;
}

.cookie-banner {
    background: var(--white);
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 200;
    display: none;
}

.cookie-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.legal h1 {
    color: var(--primary);
    margin-bottom: 16px;
}

.legal h2 {
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        background: var(--primary);
        height: 100vh;
        width: 100%;
        transform: translateX(100%);
        transition: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 24px;
    }

    .nav a {
        color: var(--white);
        font-size: 1.4rem;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 32px;
        color: var(--white);
        cursor: pointer;
    }

    .nav-toggle:checked ~ .nav {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}