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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #475569;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.hero-image {
    flex: 1;
    background-color: #cbd5e1;
}

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

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

.feature-image {
    flex: 1;
    background-color: #e2e8f0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.feature-content {
    flex: 1;
    padding: 80px 8% 80px 5%;
}

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.feature-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 5%;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.services-intro p {
    font-size: 18px;
    color: #64748b;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #cbd5e1;
}

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

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #475569;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

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

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

.form-section-split {
    display: flex;
    background-color: #f1f5f9;
}

.form-visual {
    flex: 1;
    background-color: #cbd5e1;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.form-container {
    flex: 1;
    padding: 80px 8% 80px 5%;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #475569;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.cta-submit:hover {
    background-color: #1d4ed8;
}

.trust-split {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 80px 8% 80px 5%;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    background-color: #e2e8f0;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 5% 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 24px 5%;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #475569;
}

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

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

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

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

.cookie-reject {
    background-color: #e2e8f0;
    color: #1e293b;
}

.cookie-reject:hover {
    background-color: #cbd5e1;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #ffffff;
    font-size: 48px;
}

@media (max-width: 968px) {
    .hero-split,
    .features-split,
    .form-section-split,
    .trust-split,
    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-content,
    .feature-content,
    .trust-content,
    .form-container {
        padding: 40px 5%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

.content-page {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1e293b;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #334155;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #475569;
}

.content-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-page li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

.about-split {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.about-content {
    flex: 1;
    padding-right: 5%;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item-split {
    display: flex;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.service-item-split:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    background-color: #cbd5e1;
}

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

.service-item-content {
    flex: 1;
    padding: 40px;
}

.service-item-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-item-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.6;
}

.service-item-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
    min-height: 400px;
    border-radius: 8px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.info-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .about-split,
    .contact-split,
    .service-item-split {
        flex-direction: column;
    }

    .service-item-split:nth-child(even) {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}