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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6649;
}

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #4a7c59;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.hero-asymmetric {
    padding: 0;
    overflow: hidden;
}

.hero-offset-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.hero-text-block {
    flex: 0 0 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f7f5;
}

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

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background: #4a7c59;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image-block {
    flex: 1;
    position: relative;
}

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

.intro-overlap {
    margin-top: -80px;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: auto;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.problem-amplification {
    padding: 100px 0;
    background: #fff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left h3 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.insight-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

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

.services-stacked {
    padding: 100px 0;
    background: #f8f7f5;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    padding-left: 60px;
}

.service-block {
    display: flex;
    margin-bottom: 80px;
    gap: 0;
    align-items: stretch;
}

.service-alt-1 {
    flex-direction: row;
}

.service-alt-2 {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-service {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background: #4a7c59;
    transform: translateX(4px);
}

.service-visual {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

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

.trust-section {
    padding: 100px 0;
    background: #fff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f7f5;
    padding: 30px;
    border-left: 4px solid #4a7c59;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.form-section {
    padding: 100px 0;
    background: #2c2c2c;
    color: #fff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #ddd;
}

.selected-service-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    width: 100%;
    background: #4a7c59;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d6649;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

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

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

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a7c59;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
}

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

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info, .contact-hours {
    flex: 1;
}

.contact-info h3, .contact-hours h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p, .contact-hours p {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.about-page {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.services-page {
    padding: 80px 0;
}

.services-list {
    margin-top: 60px;
}

.service-item {
    background: #f8f7f5;
    padding: 40px;
    margin-bottom: 30px;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-item p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn-home {
    display: inline-block;
    background: #2c2c2c;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #4a7c59;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .hero-offset-container {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
        padding: 60px 30px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-image-block {
        min-height: 400px;
    }

    .intro-overlap {
        margin-top: 0;
    }

    .intro-card {
        padding: 30px;
        margin-left: 0;
    }

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

    .service-block {
        flex-direction: column !important;
    }

    .service-content {
        padding: 40px 30px;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 32px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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