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

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

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    text-transform: lowercase;
}

.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: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.split-reverse {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.split-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-intro {
    padding: 80px 60px;
    text-align: center;
    background-color: #ffffff;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 60px;
    background-color: #f8f9fa;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    padding: 20px 20px 12px;
    font-size: 24px;
    color: #1a252f;
}

.service-card p {
    padding: 0 20px 16px;
    font-size: 15px;
    color: #5a6c7d;
}

.service-card .price {
    padding: 0 20px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a252f;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

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

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

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

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

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

.split-centered {
    padding: 60px;
    background-color: #fff8dc;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.disclaimer-box p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 60px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.split-about {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.split-reverse-about {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    background-color: #f8f9fa;
}

.about-image-left {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.about-text-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-text-right p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    margin-bottom: 0;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-detail-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.cta-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
}

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

.service-detail-split-reverse {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    background-color: #f8f9fa;
}

.contact-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.contact-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #cbd5e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-about,
    .split-reverse-about,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-split {
        flex-direction: column;
    }

    .nav-split {
        padding: 16px 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .hero-content,
    .split-text,
    .about-text,
    .about-text-right,
    .service-detail-text,
    .contact-info {
        padding: 40px 30px;
    }

    .services-grid {
        padding: 30px 20px;
    }

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

    .values-grid {
        gap: 30px;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

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