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

:root {
    --primary: #1a4d7a;
    --secondary: #2c7ab8;
    --accent: #e8944a;
    --dark: #1a1a2e;
    --light: #f4f6f9;
    --text: #333;
    --border: #d4d8dd;
}

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

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

header {
    background: var(--dark);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.ad-notice {
    font-size: 11px;
    color: #aaa;
    padding: 4px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.hero-right {
    flex: 1;
    background-color: #e5e8ec;
    background-size: cover;
    background-position: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 36px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 148, 74, 0.4);
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-content {
    padding: 80px 60px;
}

.split-image {
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    min-height: 480px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 60px 0;
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: var(--secondary);
}

.full-width-section {
    background: var(--light);
    padding: 80px 0;
}

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

.form-section {
    background: #fff;
    padding: 60px 0;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

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

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

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

.form-group select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-color: #fff;
    padding-right: 40px;
}

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

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

.submit-btn:hover {
    background: #d67f39;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.contact-info {
    background: var(--light);
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-map {
    flex: 1;
    background: #ddd;
    min-height: 400px;
    border-radius: 8px;
}

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

.info-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 15px;
    color: #555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-reject {
    background: #ddd;
    color: var(--dark);
}

.cookie-btn:hover {
    opacity: 0.85;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

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

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

.thanks-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.back-home:hover {
    background: var(--secondary);
}

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

    .hero-left,
    .split-content {
        padding: 50px 30px;
    }

    nav ul {
        gap: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}