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

:root {
    --primary: #1a4d7a;
    --secondary: #2c6ba8;
    --accent: #ff8c42;
    --dark: #0f1419;
    --light: #f4f7fa;
    --border: #dde4ed;
    --text: #2d3748;
    --text-light: #5a6c7d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #ffffff;
}

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

header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background: var(--light);
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 32px;
}

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

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

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

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

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 56px;
    background: var(--light);
}

.split-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,77,122,0.2), transparent);
}

h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.lead {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,140,66,0.3);
}

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

.cta-secondary:hover {
    background: var(--primary);
    color: #ffffff;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

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

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1;
    min-width: 340px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

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

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.form-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 64px 0;
}

.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 32px;
}

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

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

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,140,66,0.3);
}

.stats-row {
    display: flex;
    gap: 48px;
    margin: 48px 0;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

footer {
    background: var(--dark);
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
}

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

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

.footer-col a {
    color: #b8c4d0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    text-align: center;
    color: #8896a6;
    font-size: 14px;
}

.disclaimer {
    background: #fff9f5;
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 32px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.references {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.references h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
    font-size: 14px;
}

.references a {
    color: var(--secondary);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid var(--border);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s;
}

.cookie-accept {
    background: var(--accent);
    color: #ffffff;
}

.cookie-reject {
    background: var(--light);
    color: var(--text);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.content-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 24px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.content-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-page ul,
.content-page ol {
    margin: 16px 0 16px 32px;
}

.content-page li {
    margin-bottom: 8px;
}

.contact-split {
    display: flex;
    gap: 64px;
    margin-top: 48px;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    background: var(--light);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

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

.info-item p {
    color: var(--text);
    line-height: 1.6;
}

.hours-table {
    margin-top: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.thanks-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
}

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

.thanks-icon {
    font-size: 72px;
    color: var(--accent);
    margin-bottom: 24px;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .split-hero {
        flex-direction: column;
    }

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

    .header-wrapper {
        flex-wrap: wrap;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }
}