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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --text: #333;
    --light: #ecf0f1;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

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

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

header {
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    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.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.split-section {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.split-left, .split-right {
    flex: 1;
    padding: 4rem 5%;
}

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

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

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

.split-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-half {
    flex: 1;
    min-height: 500px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

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

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

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

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

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

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

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--light);
}

.service-content {
    padding: 2rem;
}

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

.form-section {
    padding: 5rem 5%;
    background: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    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(--accent);
}

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

.contact-info {
    padding: 4rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px var(--shadow);
    padding: 2rem;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: #d5dbdb;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--light);
}

.thanks-box {
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    max-width: 600px;
}

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

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .split-section {
        flex-direction: column;
    }

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

    .content-half {
        padding: 3rem 2rem;
    }

    .image-half {
        min-height: 300px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .thanks-box {
        padding: 2.5rem 2rem;
    }
}
