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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-split {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background: #dfe6e9;
    overflow: hidden;
}

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

.cta-primary {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.features-asymmetric {
    display: flex;
    align-items: center;
    padding: 90px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-left-block {
    flex: 1.2;
}

.feature-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.feature-right-visual {
    flex: 1;
    background: #ecf0f1;
}

.feature-right-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview-split {
    display: flex;
    background: #ffffff;
}

.services-visual {
    flex: 1;
    background: #dfe6e9;
}

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

.services-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.service-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.service-card-compact {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-card-compact h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card-compact p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
}

.testimonial-offset {
    padding: 80px 60px;
    background: #ecf0f1;
}

.testimonial-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-quote {
    flex: 1.3;
}

.testimonial-quote p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-quote cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 60px;
    gap: 80px;
}

.form-description {
    flex: 1;
}

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

.form-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    background: #2c3e50;
    color: #ecf0f1;
    gap: 60px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer-footer {
    background: #1a252f;
    padding: 24px 80px;
    text-align: center;
}

.disclaimer-footer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

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

.about-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.about-content-left h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.about-visual-right {
    flex: 1;
    background: #dfe6e9;
}

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

.values-alternating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
}

.value-block {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

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

.value-text {
    flex: 1;
}

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

.value-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.value-image {
    flex: 1;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-centered {
    text-align: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.team-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 320px;
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    font-size: 14px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.approach-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.approach-left {
    flex: 1.2;
}

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

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

.step-item {
    display: flex;
    gap: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.approach-right {
    flex: 1;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.intro-content h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.intro-visual {
    flex: 1;
    background: #dfe6e9;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
}

.service-block {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-block:last-child {
    border-bottom: none;
}

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

.service-info {
    flex: 1;
}

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

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

.service-includes {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 24px;
    position: relative;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.pricing-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.cta-services {
    background: #3498db;
    padding: 80px 60px;
}

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

.cta-content-centered h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background: #ffffff;
    color: #3498db;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
}

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

.contact-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-info-left h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-visual-right {
    flex: 1;
    background: #dfe6e9;
}

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

.contact-details-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.detail-block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.address-line {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.contact-note {
    font-size: 15px;
    line-height: 1.7;
    color: #7f8c8d;
    margin-top: 16px;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.schedule-row .day {
    font-size: 16px;
    color: #2c3e50;
}

.schedule-row .hours {
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.map-placeholder {
    background: #ecf0f1;
    padding: 80px 60px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: #bdc3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.map-hint {
    font-size: 15px;
    color: #7f8c8d;
}

.thanks-hero {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

.thanks-content {
    flex: 1.3;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.service-reference {
    background: #f8f9fa;
    padding: 20px 28px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    margin-bottom: 40px;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.steps-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #2980b9;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 14px 32px;
    border: 2px solid #3498db;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: #3498db;
    color: #ffffff;
}

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

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 50px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .about-hero-split,
    .services-intro-split,
    .contact-split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .about-content-left,
    .intro-content,
    .contact-info-left {
        padding: 50px 30px;
    }

    .hero-right,
    .about-visual-right,
    .intro-visual,
    .contact-visual-right {
        min-height: 350px;
    }

    .features-asymmetric,
    .services-preview-split,
    .form-section-split,
    .approach-split,
    .thanks-hero {
        flex-direction: column;
        padding: 50px 30px;
        gap: 40px;
    }

    .value-block,
    .service-block {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .value-block.value-reverse,
    .service-block.service-right {
        flex-direction: column;
    }

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

    .footer-split {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

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

    .nav-main {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

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