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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6fa8;
    --accent-color: #e8a038;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

.ad-disclosure {
    background: #fff9e6;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #856404;
    border: 1px solid #ffeeba;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.split-hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.split-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.split-left p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-button:hover {
    background: #d69530;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 160, 56, 0.3);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.cta-button-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.section-split {
    display: flex;
    min-height: 500px;
}

.section-split-reverse {
    flex-direction: row-reverse;
}

.section-content,
.section-visual {
    flex: 1;
    padding: 80px 60px;
}

.section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-visual {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.section-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.section-content ul {
    list-style: none;
    margin: 25px 0;
}

.section-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
}

.section-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 60px;
    background: var(--bg-light);
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.form-section {
    display: flex;
    background: var(--primary-color);
}

.form-info {
    flex: 1;
    padding: 80px 60px;
    color: var(--text-light);
}

.form-info h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: var(--bg-white);
}

.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-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

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

.contact-info-split {
    display: flex;
    background: var(--bg-light);
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
}

.contact-map {
    flex: 1;
    background: #d4d4d4;
    min-height: 400px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    color: #666;
    user-select: text;
}

.footer-split {
    display: flex;
    background: var(--text-dark);
    color: var(--text-light);
}

.footer-main {
    flex: 2;
    padding: 60px;
}

.footer-links {
    flex: 1;
    padding: 60px;
    background: #0d0d0d;
}

.footer-main h4,
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.disclaimer-box {
    background: #2a2a2a;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
    font-size: 14px;
    line-height: 1.6;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 25px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    flex: 1;
    margin-right: 20px;
    font-size: 15px;
}

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

.cookie-button {
    padding: 10px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thanks-box {
    max-width: 600px;
}

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

.thanks-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: white;
}

@media (max-width: 1024px) {
    .split-hero,
    .section-split,
    .form-section,
    .contact-info-split,
    .footer-split {
        flex-direction: column;
    }

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

    .split-left,
    .split-right,
    .section-content,
    .section-visual,
    .form-info,
    .form-container,
    .contact-details,
    .footer-main,
    .footer-links {
        padding: 60px 40px;
    }

    .section-visual {
        min-height: 400px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .section-content h2 {
        font-size: 32px;
    }

    .services-grid {
        padding: 60px 40px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-banner p {
        margin-right: 0;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .split-left,
    .split-right,
    .section-content,
    .section-visual,
    .form-info,
    .form-container,
    .contact-details,
    .footer-main,
    .footer-links {
        padding: 40px 20px;
    }

    .split-left h1 {
        font-size: 32px;
    }

    .section-content h2 {
        font-size: 28px;
    }

    .services-grid {
        padding: 40px 20px;
    }

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

    .legal-content {
        padding: 60px 20px;
    }
}
