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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.main-nav a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-image-side {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #ffffff;
}

.hero-content-side h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-side p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.content-width-center {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.text-block-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-block-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.text-block-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card-large {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

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

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

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.form-section-split {
    display: flex;
    min-height: 80vh;
}

.form-intro-side {
    flex: 1;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-intro-side p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ddd;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 0.8rem 1.2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.95rem;
}

.form-container-side {
    flex: 1;
    background-color: #f5f5f5;
    padding: 5rem 8%;
    display: flex;
    align-items: center;
}

.main-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.main-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 0.5rem;
}

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

.trust-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 2.5rem;
}

.approach-card {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.approach-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-column a {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: #bbb;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    color: #777 !important;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

.cookie-banner.visible {
    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;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

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

.btn-cookie {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
}

.btn-cookie:not(.secondary) {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-cookie:not(.secondary):hover {
    background-color: #0052a3;
}

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

.btn-cookie.secondary:hover {
    border-color: #999;
}

.about-hero {
    padding: 8rem 5% 4rem;
    background-color: #f9f9f9;
    text-align: center;
}

.about-content-wrap h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.story-section-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: #ffffff;
}

.story-image-offset {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-offset img {
    width: 100%;
    height: auto;
}

.story-text-offset {
    flex: 1;
}

.story-text-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.values-section {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-cards {
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.team-section-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.team-intro-half {
    flex: 1;
    padding: 5rem 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.team-intro-half p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.team-image-half {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.process-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

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

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.services-hero {
    padding: 6rem 5% 3rem;
    background-color: #f9f9f9;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-text {
    flex: 1.2;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.price-highlight {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
}

.pricing-note {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.pricing-note h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-section-centered {
    padding: 6rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.contact-hero {
    padding: 6rem 5% 3rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
}

.contact-main-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background-color: #ffffff;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail-item {
    margin-bottom: 2.5rem;
}

.contact-detail-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-top: 2rem;
}

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

.contact-image-block {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: auto;
}

.location-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.thanks-icon {
    font-size: 4rem;
    color: #0066cc;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f4ff;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1rem;
    color: #0066cc;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0066cc;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
}

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

.legal-content {
    padding: 5rem 5%;
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #333;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-card-large,
    .service-card-large.reverse,
    .form-section-split,
    .story-section-asymmetric,
    .team-section-split,
    .service-detail-item,
    .service-detail-item.reverse,
    .contact-main-section {
        flex-direction: column;
    }

    .approach-grid,
    .values-cards,
    .footer-content {
        flex-direction: column;
    }

    .hero-content-side h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content-side h1 {
        font-size: 2rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

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