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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    background: #ecf0f1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.hero-image {
    flex: 1;
    background: #95a5a6;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #bdc3c7;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 4rem 5%;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-preview {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-image {
    flex: 1;
    background: #95a5a6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

.select-service {
    padding: 0.875rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.cta-split {
    display: flex;
    align-items: center;
}

.cta-content {
    flex: 1;
    padding: 4rem 5%;
    background: #3498db;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
}

.cta-visual {
    flex: 1;
    background: #7f8c8d;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-section {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-row label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-row input,
.form-row textarea {
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-row input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

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

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

#acceptCookies {
    background: #27ae60;
    color: #ffffff;
}

#rejectCookies {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-service {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.about-hero {
    padding: 5rem 5%;
    background: #ecf0f1;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-hero p {
    font-size: 1.3rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
}

.about-image {
    flex: 1;
    background: #95a5a6;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
    padding: 4rem 5%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-page {
    padding: 5rem 5%;
}

.services-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.contact-page {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .about-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
    }

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

@media (max-width: 640px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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