:root {
    --primary: #0A5F7C;
    --secondary: #D4915E;
    --accent: #F4A261;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F9F6F3;
    --bg-white: #FFFFFF;
    --border-subtle: #E8E4DF;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    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-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    background: #F5F5F5;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 620px;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 60px 80px 60px 40px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 620px;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,95,124,0.1) 0%, transparent 100%);
}

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

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background: #094E68;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10,95,124,0.3);
}

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

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    background-color: var(--bg-light);
}

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

h2 {
    font-size: 42px;
    margin-bottom: 22px;
    color: var(--text-dark);
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 80px 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-subtle);
    padding: 40px 32px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.price-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.form-section {
    background: var(--bg-light);
    padding: 90px 40px;
}

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

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

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

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

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

select {
    cursor: pointer;
    background: white;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #094E68;
    transform: translateY(-2px);
}

footer {
    background: #1A1A1A;
    color: #B8B8B8;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-column a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 32px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

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

.cookie-content {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 15px;
}

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

.btn-accept:hover {
    background: #094E68;
}

.btn-reject {
    background: #E8E4DF;
    color: var(--text-dark);
}

.btn-reject:hover {
    background: #D8D4CF;
}

.page-header {
    background: var(--bg-light);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 20px;
    margin-left: 24px;
    color: var(--text-light);
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-email {
    color: var(--text-light);
    pointer-events: none;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 50px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.feature-list {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 220px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 16px;
}

.legal-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

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

    .hero-image,
    .split-image {
        min-height: 350px;
    }

    .hero-text,
    .split-content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    nav ul {
        gap: 16px;
        flex-wrap: wrap;
    }

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

    .cookie-banner.active {
        flex-direction: column;
        align-items: stretch;
    }
}
