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

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #333;
    --border: #bdc3c7;
    --success: #27ae60;
}

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

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

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

.ad-disclosure {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

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

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

.split-right {
    background: var(--primary);
    color: #fff;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

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

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.split-right h2 {
    color: #fff;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border: 2px solid var(--border);
    padding: 40px;
    display: flex;
    gap: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.form-split {
    display: flex;
    gap: 0;
}

.form-info {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 60px;
}

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

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

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.full-width-section {
    padding: 100px 0;
    text-align: center;
}

.alternate-bg {
    background: var(--light);
}

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

.content-split img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.content-split-text {
    flex: 1;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
}

.features-list li:before {
    content: "✓ ";
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

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

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

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    padding: 12px 30px;
}

.success-message {
    text-align: center;
    padding: 100px 20px;
}

.success-message h1 {
    color: var(--success);
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

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

.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

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

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.references h3 {
    margin-bottom: 20px;
}

.references ol {
    margin-left: 20px;
}

.references li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references a {
    color: var(--accent);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

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

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .content-split img {
        width: 100%;
    }

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

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

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