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

.ad-disclosure {
    background: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d2e;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #1a4d2e;
}

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

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

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

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 32px;
}

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

.cta-primary:hover {
    background: #153d24;
}

.hero-right {
    flex: 1;
    background: #c8b89d;
}

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

.problem-section {
    padding: 80px 60px;
    background: #ffffff;
}

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

.content-narrow h2 {
    font-size: 38px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.content-narrow p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
}

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

.split-left-img {
    flex: 1;
    background: #e8dcc8;
}

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

.split-right-text {
    flex: 1;
}

.split-right-text h3 {
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.split-right-text p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 40px;
    color: #1a4d2e;
    margin-bottom: 28px;
}

.insight-text p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-img {
    flex: 1;
    background: #d4c4a8;
}

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

.services-highlight {
    padding: 100px 60px;
    background: #ffffff;
}

.services-intro-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro-center h2 {
    font-size: 42px;
    color: #1a4d2e;
    margin-bottom: 16px;
}

.services-intro-center p {
    font-size: 18px;
    color: #5a5a5a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #d4c4a8;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2d2d2d;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 24px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #1a4d2e;
}

.form-section-offset {
    display: flex;
    background: #f8f9fa;
}

.form-container {
    flex: 1.3;
    padding: 80px 60px;
}

.form-container h2 {
    font-size: 36px;
    color: #1a4d2e;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.main-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    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: #1a4d2e;
}

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

.btn-submit:hover {
    background: #153d24;
}

.form-image {
    flex: 1;
    background: #c8b89d;
}

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

.testimonials-inline {
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #1a4d2e;
}

.testimonial-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #1a4d2e;
    font-weight: 600;
}

.trust-indicators {
    padding: 80px 60px;
    background: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 38px;
    color: #1a4d2e;
    margin-bottom: 48px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 40px);
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 60px;
    background: #fff9e6;
    border-top: 2px solid #f4d03f;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.7;
}

.main-footer {
    background: #2d2d2d;
    color: #c8c8c8;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9a9a9a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 24px 60px;
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-content a {
    color: #f4d03f;
}

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

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

.cookie-btn.accept {
    background: #1a4d2e;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #6a6a6a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #5a5a5a;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
    max-width: 600px;
}

.thanks-container .selected-service {
    font-size: 20px;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.about-hero h1 {
    font-size: 48px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 60px;
    background: #ffffff;
}

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

.about-story-content h2 {
    font-size: 36px;
    color: #1a4d2e;
    margin-bottom: 24px;
}

.about-story-content p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-split {
    display: flex;
    gap: 40px;
    padding: 80px 60px;
    background: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-split img {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #d4c4a8;
}

.services-page-hero {
    padding: 80px 60px;
    background: #f8f9fa;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-section {
    padding: 80px 60px;
    background: #ffffff;
}

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

.contact-hero h1 {
    font-size: 48px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details-section {
    padding: 80px 60px;
    background: #ffffff;
}

.contact-details-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 22px;
    color: #1a4d2e;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-content,
    .insight-split,
    .form-section-offset,
    .testimonials-inline,
    .footer-split,
    .about-image-split {
        flex-direction: column;
    }

    .services-grid-split {
        flex-direction: column;
    }

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

    .trust-item {
        flex: 1 1 100%;
    }

    .split-nav {
        padding: 16px 24px;
    }

    .nav-right {
        gap: 16px;
    }

    .hero-left,
    .problem-section,
    .insight-section,
    .services-highlight,
    .form-container {
        padding: 40px 24px;
    }

    .hero-left h1,
    .about-hero h1,
    .services-page-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }
}