* {
    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: #2a2a2a;
    background: #ffffff;
}

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

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    background: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

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

.hero-left, .hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f9f8f6;
}

.hero-content {
    max-width: 600px;
}

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: #444;
}

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

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

.split-image, .split-content {
    flex: 1;
}

.split-image {
    position: relative;
    overflow: hidden;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.services-showcase {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

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

.section-header-center p {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card-split {
    display: flex;
    min-height: 450px;
}

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

.service-image, .service-details {
    flex: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
}

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

.service-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem;
    background: #fafaf9;
}

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

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

.price-tag {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9375rem;
}

.btn-select-service:hover {
    background: #444;
}

.process-section {
    padding: 6rem 2rem;
    background: #f9f8f6;
}

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

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

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

.process-step {
    flex: 1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.cta-form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
}

.main-form {
    background: #fafaf9;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-submit:hover {
    background: #444;
}

.trust-section {
    padding: 4rem 2rem;
    background: #f9f8f6;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    color: #999;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

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

.cookie-banner.show {
    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.9375rem;
    line-height: 1.6;
}

.cookie-content p a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #ffffff;
    color: #2a2a2a;
}

.btn-accept:hover {
    background: #f0f0f0;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-text-side,
.hero-image-side {
    flex: 1;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f9f8f6;
}

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

.hero-text-side p {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.hero-image-side {
    position: relative;
    overflow: hidden;
}

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

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

.story-content-left,
.story-image-right {
    flex: 1;
}

.story-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

.story-content-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content-left p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.story-image-right {
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 2rem;
    background: #f9f8f6;
}

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

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

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

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.team-section-split.reverse {
    flex-direction: row-reverse;
}

.team-image,
.team-content {
    flex: 1;
}

.team-image {
    position: relative;
    overflow: hidden;
}

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

.team-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

.team-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 2rem;
    background: #f9f8f6;
}

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

.approach-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-content-center p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.cta-about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.page-header-centered {
    padding: 4rem 2rem;
    background: #f9f8f6;
    text-align: center;
}

.page-header-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-header-centered p {
    font-size: 1.25rem;
    color: #666;
}

.services-detailed {
    background: #ffffff;
}

.service-detail-item-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #fafaf9;
}

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

.service-detail-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

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

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 1.5rem 0;
}

.pricing-info-section {
    padding: 5rem 2rem;
    background: #f9f8f6;
}

.pricing-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-info-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-info-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-cta-section {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

.service-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-hero {
    padding: 4rem 2rem;
    background: #f9f8f6;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.25rem;
    color: #666;
}

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

.contact-info-side,
.contact-visual-side {
    flex: 1;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f8f6;
    border-radius: 8px;
}

.contact-note p {
    font-size: 0.9375rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-visual-side {
    position: relative;
    overflow: hidden;
}

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

.location-info {
    padding: 5rem 2rem;
    background: #f9f8f6;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.location-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f9f8f6;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

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

.thanks-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 1rem;
    color: #4a4a4a;
}

.service-confirmation strong {
    color: #2a2a2a;
    font-weight: 700;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

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

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-content a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

    .service-card-split.reverse,
    .philosophy-split.reverse,
    .team-section-split.reverse,
    .service-detail-item-split.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-text-side h1 {
        font-size: 2.25rem;
    }

    .process-steps-split,
    .values-grid-split {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .ad-notice {
        display: none;
    }

    .hero-left,
    .split-content,
    .service-details,
    .form-intro,
    .hero-text-side,
    .story-content-left,
    .team-content,
    .service-detail-content,
    .contact-info-side {
        padding: 2.5rem 2rem;
    }

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

    .section-header-center h2,
    .process-container h2,
    .values-container h2 {
        font-size: 2rem;
    }
}