* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

.hero-split .split-left {
    background-color: #f8fafc;
    max-width: 50%;
}

.hero-split h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0f172a;
}

.hero-split p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #475569;
    max-width: 560px;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #1e40af;
}

.hero-image {
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.intro-section {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.intro-section .split-right {
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f172a;
}

.intro-section p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    padding: 0;
    background-color: #f1f5f9;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.services-preview > h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #0f172a;
}

.service-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    padding: 0;
    background-color: #e2e8f0;
    overflow: hidden;
    min-height: 400px;
}

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

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.service-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 25px;
}

.select-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1e40af;
}

.trust-section {
    display: flex;
    align-items: stretch;
    background-color: #0f172a;
    color: #ffffff;
    min-height: 70vh;
}

.trust-section .split-left {
    background-color: #0f172a;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
    color: #cbd5e1;
}

.trust-list {
    list-style: none;
    padding-left: 0;
}

.trust-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 60px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #1e40af;
}

.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 40px 40px;
}

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

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p {
    line-height: 1.8;
    color: #94a3b8;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3b82f6;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 30px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8fafc;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.thanks-content .back-link:hover {
    color: #1e40af;
}

.contact-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #0f172a;
    text-align: center;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0f172a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #f1f5f9;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #0f172a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1e293b;
}

.legal-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .service-split,
    .trust-section,
    .contact-split {
        flex-direction: column;
    }

    .hero-split .split-left {
        max-width: 100%;
    }

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

    .nav-links {
        gap: 20px;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 15px 20px;
    }

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

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

    .service-content {
        padding: 40px 30px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .services-preview {
        padding: 60px 20px;
    }
}