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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --accent-color: #97bc62;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a8ca75;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.btn-secondary-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: white;
}

.story-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.alternating-section {
    padding: 60px 0;
}

.split-block {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    gap: 60px;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.split-text {
    flex: 1;
    padding: 20px;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.services-preview {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.testimonial-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
}

.testimonial footer {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.value-proposition {
    padding: 80px 20px;
    background: var(--bg-light);
}

.value-proposition h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1 1 calc(25% - 40px);
    min-width: 200px;
    text-align: center;
}

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

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
}

.cta-floating {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.cta-floating h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-floating p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

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

.footer-col a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    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: 30px;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-cookie {
    background: var(--primary-color);
    color: white;
}

.btn-cookie:hover {
    background: var(--primary-dark);
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    max-width: 500px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.team-highlight p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.stats-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

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

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.philosophy-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.philosophy-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 60px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.service-detail-text {
    flex: 1.5;
}

.service-detail-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-detail-text ul {
    margin-left: 20px;
    color: var(--text-light);
}

.service-detail-text ul li {
    margin-bottom: 10px;
}

.capacity-info {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-cta {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.pricing-note {
    padding: 60px 20px;
    background: var(--bg-light);
}

.pricing-note h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-note p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-factors {
    margin: 20px 0;
    padding-left: 30px;
}

.pricing-factors li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-side {
    flex: 1;
    background: var(--bg-light);
    padding: 60px 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    color: var(--text-light);
    font-style: italic;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.response-info {
    padding: 80px 20px;
    background: var(--bg-white);
}

.response-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.response-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.response-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.response-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.response-item p {
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

.thanks-icon {
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service {
    font-size: 1.2rem;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.step-simple {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-simple p {
    color: var(--text-light);
    margin: 0;
}

.thanks-cta {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-reminder p {
    margin: 0;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 20px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    color: var(--text-light);
}

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

.legal-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.update-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hero-left {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .split-block,
    .split-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .steps-flex {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .service-detail-content {
        flex-direction: column;
        padding: 30px 20px;
    }

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

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

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

    .thanks-section h1 {
        font-size: 2rem;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

    .thanks-cta .btn-primary,
    .thanks-cta .btn-secondary-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}