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

:root {
    --primary: #1a1a1a;
    --secondary: #ff6b35;
    --accent: #f7931e;
    --text: #333;
    --light: #f4f4f4;
    --white: #ffffff;
}

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

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

header {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    margin-left: 2rem;
}

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

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

.split-content,
.split-visual {
    flex: 1;
    padding: 3rem;
}

.split-visual {
    background-color: #e8e8e8;
    position: relative;
    min-height: 500px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    border-radius: 3px;
}

.btn:hover {
    background: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

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

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--secondary);
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    margin: 1rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.form-section {
    background: var(--light);
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 1rem;
}

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

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

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

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

.cookie-content {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.contact-info {
    background: var(--light);
    padding: 2rem;
    margin-top: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.thanks-container {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--light);
}

.thanks-container h1 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    line-height: 1.8;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    margin: 1rem 0;
    border-left: 4px solid var(--secondary);
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    font-style: normal;
    color: var(--primary);
}

.image-card {
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.disclaimer {
    background: #fff9e6;
    border: 1px solid #f0e5c9;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.reference-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.reference-list h3 {
    margin-bottom: 1rem;
}

.reference-list ol {
    margin-left: 2rem;
}

.reference-list li {
    margin-bottom: 0.5rem;
}

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

.reference-list a:hover {
    text-decoration: underline;
}

sup a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

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

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

    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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