* {
    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: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-text-content {
    max-width: 540px;
}

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

.hero-text-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-color: #e8eef2;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.intro-section {
    padding: 80px 20px;
    text-align: center;
}

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

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

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

.service-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

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

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

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

.btn-select-service {
    background-color: #0066cc;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.3s ease;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 16px;
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-row input[readonly] {
    background-color: #f5f5f5;
}

.btn-submit {
    background-color: #0066cc;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

.disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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-buttons {
    display: flex;
    gap: 12px;
}

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

.btn-accept {
    background-color: #0066cc;
    color: #fff;
}

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

.btn-reject {
    background-color: #444;
    color: #fff;
}

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

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

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

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

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

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

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

.about-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

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

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.process-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    min-width: 60px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 20px;
    background-color: #0066cc;
    text-align: center;
    color: #fff;
}

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

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

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

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

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

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-info ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 8px;
    color: #555;
}

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

.service-visual {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-info-section {
    padding: 60px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

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

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

.contact-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

.contact-note {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.contact-note p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-note a {
    color: #0066cc;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.thanks-hero .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.service-confirmation {
    font-weight: 600;
    color: #0066cc;
    margin-top: 20px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

.next-steps {
    padding: 80px 20px;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.legal-page {
    padding: 60px 20px;
}

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

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

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

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

    .service-split,
    .service-split.reverse,
    .service-block,
    .service-block.reverse,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .nav {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .thanks-hero .container {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}