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

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

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

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: #e5e7eb;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 1px solid #d1d5db;
}

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

.value-proposition {
    display: flex;
    align-items: center;
}

.vp-image {
    flex: 1;
    background-color: #d1d5db;
}

.vp-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.vp-content {
    flex: 1;
    padding: 4rem;
}

.vp-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.vp-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

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

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex: 1;
    background-color: #f3f4f6;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.select-service {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.form-wrapper h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.form-wrapper > p {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

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

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

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

.cta-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    display: flex;
    align-items: center;
}

.trust-content {
    flex: 1;
    padding: 4rem;
    background-color: #eff6ff;
}

.trust-content h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.125rem;
    color: #4b5563;
}

.trust-image {
    flex: 1;
    background-color: #d1d5db;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #1f2937;
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    border-top: 2px solid #2563eb;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding: 4rem;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #4b5563;
}

.hero-visual-block {
    flex: 1;
    background-color: #e5e7eb;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-split-content {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.content-left {
    flex: 1;
    padding: 4rem;
}

.content-left h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.content-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.content-right {
    flex: 1;
    background-color: #d1d5db;
}

.content-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
}

.values-image {
    flex: 1;
    background-color: #d1d5db;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-content {
    flex: 1;
    padding: 4rem;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #374151;
}

.values-list li strong {
    color: #111827;
}

.expertise-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.expertise-block {
    flex: 1;
    padding: 4rem;
}

.expertise-block h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.expertise-block p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.expertise-visual {
    flex: 1;
    background-color: #d1d5db;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #eff6ff;
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.services-hero {
    display: flex;
    min-height: 500px;
    align-items: center;
}

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

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #4b5563;
}

.hero-visual-right {
    flex: 1;
    background-color: #e5e7eb;
}

.hero-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.service-description {
    flex: 1;
    padding: 4rem;
}

.service-description h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-description h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-description ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.service-description ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    background-color: #d1d5db;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

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

.contact-info-block {
    flex: 1;
    padding: 4rem;
    background-color: #f9fafb;
}

.contact-info-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-visual-block {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-approach {
    display: flex;
    align-items: center;
}

.approach-content {
    flex: 1;
    padding: 4rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.125rem;
    color: #4b5563;
}

.approach-visual {
    flex: 1;
    background-color: #d1d5db;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-info {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
}

.location-visual {
    flex: 1;
    background-color: #d1d5db;
}

.location-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-content {
    flex: 1;
    padding: 4rem;
}

.location-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.location-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #1e40af;
}

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

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.steps-container h2 {
    font-size: 2.5rem;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    font-size: 1rem;
    color: #4b5563;
}

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    color: #111827;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.cookie-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-split,
    .value-proposition,
    .trust-section,
    .page-hero-split,
    .about-split-content,
    .values-section,
    .expertise-split,
    .services-hero,
    .service-detail-split,
    .contact-hero-split,
    .contact-approach,
    .location-info {
        flex-direction: column;
    }

    .hero-content,
    .vp-content,
    .trust-content,
    .hero-text-block,
    .content-left,
    .values-content,
    .expertise-block,
    .hero-content-left,
    .service-description,
    .contact-info-block,
    .approach-content,
    .location-content {
        padding: 2rem;
    }

    .hero-content h1,
    .hero-text-block h1,
    .hero-content-left h1,
    .contact-info-block h1,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 2rem;
    }

    .vp-content h2,
    .trust-content h2,
    .content-left h2,
    .values-content h2,
    .expertise-block h2,
    .service-description h2,
    .approach-content h2,
    .location-content h2,
    .section-header-centered h2,
    .form-wrapper h2,
    .steps-container h2,
    .legal-container h2,
    .cta-content-centered h2 {
        font-size: 1.75rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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