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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --text: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border: #bdc3c7;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-left: 3px solid #ffc107;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
}

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

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

.cta-primary {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

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

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

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

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

.split-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: var(--light-bg);
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.full-width-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    background: var(--light-bg);
    padding: 3rem;
    max-width: 600px;
    margin: 2rem auto;
}

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

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

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

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

.cta-secondary {
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.footer-email {
    color: var(--white);
    opacity: 0.9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
    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: 2rem;
}

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #c0392b;
}

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

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.about-team {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    background-color: var(--border);
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
}

.contact-info-block {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info-block h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info-block p {
    margin-bottom: 0.8rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

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

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

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

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background-color: var(--light-bg);
}

.thanks-box h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #555;
}

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

    .hero-content {
        padding: 3rem 5%;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .about-team {
        flex-direction: column;
    }
}