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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

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

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    position: relative;
    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;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

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

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

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

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

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

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-card .price {
    padding: 16px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

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

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

.service-card .select-service.selected {
    background-color: #27ae60;
}

.form-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

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

.form-content p {
    font-size: 18px;
    color: #5a6c7d;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.form-container form {
    width: 100%;
    max-width: 500px;
}

.form-notice {
    background-color: #fff3cd;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #856404;
    font-size: 14px;
}

.form-notice.success {
    background-color: #d4edda;
    color: #155724;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.trust-section {
    padding: 80px 60px;
    background-color: #1a252f;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e0;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.process-split {
    display: flex;
    min-height: 500px;
}

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

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

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

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

.process-image {
    flex: 1;
    background-color: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

.cta-section {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #f8f9fa;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px 80px;
}

.service-detail {
    display: flex;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail.featured {
    background-color: #e3f2fd;
    border: 2px solid #3498db;
}

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

.contact-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

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

.contact-item .no-link {
    color: #5a6c7d;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #5a6c7d;
    font-size: 24px;
    font-weight: 600;
}

.faq-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px 80px;
}

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

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

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

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

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

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

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

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

.legal-page table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

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

.thanks-section {
    padding: 100px 60px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.selected-service-display {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-display p {
    font-size: 18px;
    color: #1a252f;
    margin: 0;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps ul li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 768px) {
    .split-nav {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-right {
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .process-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-content,
    .form-container,
    .about-content,
    .process-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 20px;
    }

    .hero-image,
    .intro-image,
    .about-image,
    .process-image,
    .service-detail-image {
        min-height: 300px;
    }

    .hero-content h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .services-section,
    .trust-section,
    .values-section,
    .faq-section,
    .legal-page,
    .services-detailed {
        padding: 40px 20px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .trust-grid,
    .values-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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