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

:root {
    --primary: #1a3a52;
    --secondary: #2d5f7f;
    --accent: #e8a938;
    --text-dark: #1f1f1f;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-dark: #2a2a2a;
    --border: #d4d4d4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.top-notice {
    background: var(--accent);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 6%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 52px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #d49520;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,169,56,0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.split-section {
    display: flex;
    align-items: center;
}

.split-content {
    flex: 1;
    padding: 90px 6%;
}

.split-content h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.split-image {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-body p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.full-width-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-centered h2 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 25px;
}

.section-centered p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.form-container {
    max-width: 650px;
    margin: 60px auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 60px 5%;
}

.contact-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
}

footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

.disclaimer {
    background: #f0f0f0;
    padding: 40px 5%;
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 6px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,58,82,0.98);
    color: white;
    padding: 25px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.accept-cookies {
    background: var(--accent);
    color: var(--text-dark);
}

.accept-cookies:hover {
    background: #d49520;
}

.reject-cookies {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.reject-cookies:hover {
    background: white;
    color: var(--primary);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 14px;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #444;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #444;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.thanks-page h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 19px;
    color: #555;
    max-width: 600px;
    margin-bottom: 40px;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 68px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 250px;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s;
        height: calc(100vh - 68px);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-image {
        min-height: 400px;
        width: 100%;
    }

    .service-card {
        min-width: 100%;
    }

    .cookie-banner.active {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        flex-direction: column;
    }
}
