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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
    background-color: #f9fafb;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f3f4f6;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.intro-offset {
    display: flex;
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #2563eb;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

.services-preview {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.section-header-left {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.form-visual {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-container p {
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 3rem;
    background-color: #f9fafb;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.15rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #6b7280;
    font-style: normal;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: flex;
    gap: 4rem;
}

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header-split {
    display: flex;
    min-height: 500px;
    align-items: center;
    gap: 3rem;
    padding: 4rem 3rem;
    background-color: #f9fafb;
}

.header-content {
    flex: 1;
    padding-right: 2rem;
}

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

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

.story-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

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

.value-block {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.value-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-block p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
}

.value-visual {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.15rem;
    color: #6b7280;
}

.approach-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 3rem 6rem 3rem;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: #4b5563;
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 5rem 3rem;
    background-color: #f9fafb;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.services-header {
    text-align: center;
    padding: 5rem 3rem 3rem 3rem;
    background-color: #f9fafb;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    padding: 4rem 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.service-detail-visual {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.price-label {
    font-weight: 600;
    color: #6b7280;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    padding: 5rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.15rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.contact-header {
    text-align: center;
    padding: 5rem 3rem 3rem 3rem;
    background-color: #f9fafb;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.15rem;
    color: #6b7280;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.info-item p {
    color: #4b5563;
    line-height: 1.8;
}

.office-image {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.office-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-map p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visit-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 3rem 6rem 3rem;
    text-align: center;
}

.visit-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.visit-info p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.thanks-content {
    display: flex;
    min-height: 600px;
    padding: 4rem 3rem;
    gap: 3rem;
}

.thanks-message {
    flex: 1.5;
    padding-right: 2rem;
}

.thanks-message h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.thanks-message p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.confirmation-details {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.confirmation-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.confirmation-details p {
    margin-bottom: 0.5rem;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    list-style: decimal;
    margin-left: 1.5rem;
}

.next-steps ol li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #4b5563;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-split,
    .form-section-split,
    .page-header-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .thanks-content {
        flex-direction: column;
    }

    .values-split.reverse {
        flex-direction: column;
    }

    .intro-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

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

    .footer-content-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .approach-steps {
        flex-direction: column;
    }

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

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