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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2d5f4f;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

.nav-right a:hover {
    color: #2d5f4f;
}

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

.hero-left {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
}

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

.hero-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 8%;
    background: #fafbfc;
}

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

.intro-content h2 {
    font-size: 36px;
    color: #1a3a2f;
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a3a2f;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    color: #1a3a2f;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f4f;
    margin-top: auto;
}

.form-section-split {
    display: flex;
    gap: 60px;
    padding: 100px 8%;
    background: linear-gradient(135deg, #f0f4f2 0%, #ffffff 100%);
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 38px;
    color: #1a3a2f;
    margin-bottom: 20px;
}

.form-left-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2d5f4f;
}

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

.btn-submit:hover {
    background: #1f4538;
}

.trust-section {
    padding: 80px 8%;
    background: #1a3a2f;
    color: #ffffff;
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 16px;
    color: #d1e0db;
}

.footer {
    background: #0f241e;
    color: #c7d5cf;
    padding: 60px 8% 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #81c7b4;
}

.footer-bottom {
    border-top: 1px solid #2a4439;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #9ca8a3;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 14px;
    color: #c7d5cf;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px 5%;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    color: #4a5568;
}

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

.btn-accept {
    padding: 12px 28px;
    background: #2d5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #1f4538;
}

.btn-reject {
    padding: 12px 28px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject:hover {
    border-color: #2c3e50;
    background: #f8f9fa;
}

.cookie-link {
    color: #2d5f4f;
    text-decoration: underline;
    font-size: 14px;
}

.page-hero {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f0f4f2 0%, #e8f1ee 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a3a2f;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #4a5568;
}

.about-story-split {
    display: flex;
    gap: 60px;
    padding: 100px 8%;
    align-items: center;
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 8%;
    background: #fafbfc;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a3a2f;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #2d5f4f;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 22px;
    color: #1a3a2f;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.process-section-split {
    display: flex;
    gap: 60px;
    padding: 100px 8%;
    background: #ffffff;
}

.process-left {
    flex: 1.2;
}

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

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

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f4f;
    min-width: 50px;
}

.step-content h3 {
    font-size: 20px;
    color: #1a3a2f;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.process-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-inline {
    padding: 80px 8%;
    background: linear-gradient(135deg, #2d5f4f 0%, #1a3a2f 100%);
    text-align: center;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #d1e0db;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2d5f4f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.services-detail {
    padding: 60px 8%;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 34px;
    color: #1a3a2f;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: 700;
    font-size: 24px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2d5f4f;
}

.detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 8%;
    align-items: flex-start;
}

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

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 20px;
    color: #1a3a2f;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.faq-section {
    padding: 80px 8%;
    background: #fafbfc;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a3a2f;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 28px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 19px;
    color: #1a3a2f;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 44px;
    color: #1a3a2f;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-info {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.thanks-info h2 {
    font-size: 24px;
    color: #1a3a2f;
    margin-bottom: 16px;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: 700;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: #2d5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1f4538;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #2d5f4f;
    text-decoration: none;
    border: 2px solid #2d5f4f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a3a2f;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a3a2f;
    margin-top: 36px;
    margin-bottom: 16px;
}

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

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

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

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .about-story-split,
    .process-section-split,
    .contact-split,
    .form-section-split,
    .service-detail-item {
        flex-direction: column;
    }

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

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

    .section-header h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-stats {
        gap: 40px;
    }

    .footer-columns {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 20px;
    }
}