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

:root {
    --primary: #1a4d7a;
    --secondary: #5892c7;
    --accent: #e8f1f8;
    --dark: #1e2532;
    --light: #ffffff;
    --gray: #6b7280;
    --border: #d1d5db;
}

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

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

header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-label {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 20px;
}

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

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

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

.split-section {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

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

.split-left {
    background: var(--accent);
}

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

.hero-split {
    min-height: 700px;
}

.hero-split .split-left {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 16px 40px;
    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 20px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--accent);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: var(--accent);
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.form-section {
    background: var(--accent);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.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: 2px solid var(--border);
    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);
}

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

.submit-btn {
    background: var(--primary);
    color: var(--light);
    padding: 16px 50px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px;
    background-color: var(--accent);
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-info {
    flex: 1;
    background: var(--accent);
    padding: 50px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 60px;
    background: var(--accent);
    border-radius: 10px;
}

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

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

.legal-content h1 {
    margin-bottom: 40px;
    color: var(--primary);
}

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

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

.legal-content ul {
    margin: 16px 0 16px 30px;
}

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

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

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .about-content,
    .contact-split {
        flex-direction: column;
    }

    nav {
        width: 100%;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

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