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

:root {
    --primary: #1a4d7a;
    --secondary: #2c6ba0;
    --accent: #e8b44d;
    --dark: #0f2537;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #333333;
    --border: #d4dce5;
}

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

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

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

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

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

.ad-disclosure {
    background: var(--accent);
    color: var(--dark);
    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 {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--light);
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.hero-content h1 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

.cta-secondary {
    background: var(--accent);
    color: var(--dark);
}

.cta-secondary:hover {
    background: #d4a03d;
}

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

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

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

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.split-section:nth-child(odd) .split-content {
    background: var(--white);
}

.split-section:nth-child(even) .split-content {
    background: var(--light);
}

.split-content h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text);
}

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

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

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

.section-centered h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 24px;
}

.section-centered p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

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

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

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

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: var(--primary);
    background: var(--light);
}

.service-option.selected {
    border-color: var(--primary);
    background: var(--light);
}

.service-option input[type="radio"] {
    margin-right: 12px;
}

.service-option-content {
    flex: 1;
}

.service-option-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.service-option-price {
    color: var(--primary);
    font-weight: 700;
}

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

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

.footer-column a:hover {
    color: var(--accent);
}

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

.disclaimer {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.info-item strong {
    min-width: 150px;
    color: var(--dark);
}

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

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

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

.cookie-text {
    flex: 1;
}

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

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

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
}

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

.thanks-container p {
    font-size: 20px;
    margin-bottom: 40px;
}

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

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

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

    .split-section:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    nav {
        flex-direction: column;
        gap: 15px;
    }
}