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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #16a085;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #16a085;
}

.ad-notice {
    font-size: 12px;
    color: #95a5a6;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #138d75;
}

.intro-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

.services-preview-split {
    max-width: 1400px;
    margin: 0 auto;
}

.split-block {
    display: flex;
    min-height: 480px;
}

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

.block-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.block-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafcfc;
}

.block-content h2 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 20px;
}

.block-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #16a085;
    margin-top: 12px;
}

.cta-section {
    background-color: #ecf7f5;
    padding: 80px 40px;
}

.cta-section h2 {
    font-size: 36px;
    text-align: center;
    color: #1a2332;
    margin-bottom: 16px;
}

.cta-section > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d5dce3;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #16a085;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #138d75;
}

.mission-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.mission-content {
    flex: 1.2;
}

.mission-content h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #d5e8d4;
}

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

.values-section {
    background-color: #f8fafb;
    padding: 80px 40px;
}

.value-cards {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h4 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-block h5 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-block ul li a:hover {
    color: #16a085;
}

.footer-block p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.email-display {
    font-weight: 500;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 30px;
    padding: 24px;
    background-color: #34495e;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.page-header-split {
    display: flex;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafb;
}

.header-content h1 {
    font-size: 52px;
    color: #1a2332;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #5a6c7d;
}

.header-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.about-intro-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-intro-split .split-container {
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    text-align: center;
}

.approach-section {
    background-color: #f8fafb;
    padding: 80px 40px;
}

.approach-section h2 {
    font-size: 36px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
}

.approach-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
}

.approach-content h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 16px;
}

.approach-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise-split {
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-section {
    background-color: #ecf7f5;
    padding: 80px 40px;
}

.commitment-section h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 24px;
    text-align: center;
}

.commitment-section p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-split-item {
    display: flex;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-content-block {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafcfc;
}

.service-content-block h2 {
    font-size: 34px;
    color: #1a2332;
    margin-bottom: 20px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 24px;
}

.service-content-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-content-block h4 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 16px;
    margin-top: 12px;
}

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

.service-content-block ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-content-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 700;
    font-size: 20px;
}

.service-image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.contact-split-layout {
    display: flex;
    min-height: 700px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8fafb;
}

.contact-content-side h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 20px;
}

.contact-content-side > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.contact-detail-block {
    margin-bottom: 36px;
}

.contact-detail-block h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
}

.contact-detail-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #e8f4f1;
    border-left: 4px solid #16a085;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.location-context {
    background-color: #ffffff;
    padding: 80px 40px;
}

.location-context h2 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 24px;
}

.location-context p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-page-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1.3;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafb;
}

.thanks-message h1 {
    font-size: 44px;
    color: #16a085;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a2332;
}

.next-steps {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #138d75;
}

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

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.thanks-image {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    background-color: #d5e8d4;
}

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

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a2332;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

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

.legal-content a {
    color: #16a085;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #138d75;
}

@media (max-width: 968px) {
    .hero-split,
    .split-block,
    .page-header-split,
    .contact-split-layout,
    .thanks-page-split,
    .service-split-item {
        flex-direction: column;
    }

    .split-block.reverse,
    .service-split-item.reverse {
        flex-direction: column;
    }

    .hero-left,
    .block-content,
    .header-content,
    .contact-content-side,
    .thanks-content,
    .service-content-block {
        padding: 40px 30px;
    }

    .hero-left h1,
    .header-content h1 {
        font-size: 36px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .value-cards,
    .approach-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .split-container {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}