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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8a3a;
    --accent-color: #8fbc5f;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9f5;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.navigation {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    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;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: var(--light-bg);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    background: var(--primary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s;
    width: fit-content;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-left {
    flex: 0 0 45%;
    background: var(--light-bg);
}

.intro-left img {
    width: 100%;
    height: 100%;
}

.intro-right {
    flex: 1;
    padding: 40px 60px;
}

.intro-right h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.featured-services {
    background: var(--light-bg);
    padding: 100px 40px;
}

.featured-services h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--white);
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    background: var(--border-color);
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 14px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--primary-color);
}

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.form-container {
    flex: 1;
    padding-right: 60px;
}

.form-container h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-container p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--primary-color);
}

.form-visual {
    flex: 0 0 40%;
    background: var(--light-bg);
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.trust-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 40px;
}

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.disclaimer-section {
    background: #fffbf0;
    padding: 50px 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    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-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-color);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.page-header {
    background: var(--light-bg);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.story-content {
    flex: 1;
    padding-right: 60px;
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 0 0 45%;
    background: var(--light-bg);
}

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

.values-section {
    background: var(--light-bg);
    padding: 100px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.team-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.team-members {
    display: flex;
    gap: 40px;
}

.member {
    flex: 1;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 8px;
}

.member h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.member p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    background: var(--light-bg);
}

.approach-image {
    flex: 0 0 40%;
    background: var(--border-color);
}

.approach-image img {
    width: 100%;
    height: 100%;
}

.approach-text {
    flex: 1;
    padding: 40px 60px;
}

.approach-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.approach-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-text .cta-secondary {
    margin-top: 20px;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background: var(--light-bg);
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-box {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.process-section {
    background: var(--light-bg);
    padding: 100px 40px;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.step {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.step-number {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: var(--white);
}

.cta-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    flex: 0 0 45%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--light-bg);
}

.additional-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

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

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .hero-content,
    .intro-right,
    .form-container,
    .story-content,
    .approach-text {
        padding: 40px 30px;
    }

    .services-grid,
    .values-grid,
    .process-steps,
    .team-members {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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