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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

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

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #0066cc;
}

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

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

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

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

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #0066cc;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.intro-section {
    padding: 80px 40px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.intro-narrow {
    max-width: 740px;
}

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

.intro-narrow p {
    font-size: 18px;
    color: #495057;
}

.features-alternating {
    background: #f8f9fa;
}

.feature-row {
    display: flex;
    min-height: 480px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

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

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    background: #dee2e6;
    position: relative;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 40px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #dee2e6;
}

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

.service-card p {
    padding: 0 24px 12px 24px;
    color: #495057;
    font-size: 15px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    padding: 12px 24px;
}

.btn-select {
    margin: 0 24px 24px 24px;
    padding: 12px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 15px;
}

.btn-select:hover {
    background: #0052a3;
}

.form-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

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

.form-container > p {
    color: #495057;
    margin-bottom: 32px;
}

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

.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: #0066cc;
}

.form-group input:disabled {
    background: #e9ecef;
    color: #6c757d;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    padding: 80px 40px;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.footer {
    background: #212529;
    color: #ffffff;
    padding: 60px 40px 24px 40px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #adb5bd;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212529;
    color: #ffffff;
    padding: 24px 40px;
    display: none;
    align-items: center;
    gap: 24px;
    z-index: 1000;
}

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

.cookie-banner p {
    flex: 1;
    font-size: 14px;
}

.cookie-banner a {
    color: #6ea8fe;
}

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

.btn-accept {
    padding: 10px 24px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    padding: 10px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reject:hover {
    background: #ffffff;
    color: #212529;
}

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

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

.page-hero p {
    font-size: 18px;
    color: #495057;
}

.about-split {
    display: flex;
    padding: 80px 0;
}

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

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

.about-content {
    flex: 1;
    padding: 60px;
    background: #ffffff;
}

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

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

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

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

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

.value-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 40px;
    background: #ffffff;
}

.approach-content {
    max-width: 840px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 40px;
    background: #0066cc;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-section .btn-primary {
    background: #ffffff;
    color: #0066cc;
}

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

.services-detailed {
    background: #ffffff;
}

.service-detail {
    display: flex;
    padding: 80px 40px;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #0066cc;
}

.service-detail-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #495057;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 28px;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    background: #dee2e6;
}

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

.service-notes {
    padding: 60px 40px;
    background: #f8f9fa;
}

.service-notes h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.notes-content {
    max-width: 840px;
    margin: 0 auto;
}

.notes-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 40px;
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
    padding: 40px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 6px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 12px;
}

.contact-image {
    flex: 1;
    background: #dee2e6;
}

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

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

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

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a1a;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.legal-intro {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #0066cc;
}

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

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

.legal-content ul li {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.6;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.thanks-section {
    padding: 80px 40px;
    background: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0066cc;
}

.thanks-content > p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 48px;
}

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

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details ol {
    margin-left: 24px;
    margin-bottom: 28px;
}

.thanks-details ol li {
    margin-bottom: 12px;
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
}

.service-selected {
    font-size: 17px;
    color: #495057;
    padding-top: 16px;
    border-top: 1px solid #dee2e6;
}

.service-selected strong {
    color: #0066cc;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-next p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 24px;
}

.thanks-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
}

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

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

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

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

    .testimonials {
        flex-direction: column;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

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

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .thanks-buttons {
        flex-direction: column;
    }
}