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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc5a;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f7f9f5;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-service,
.btn-sticky {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-service {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.main-nav {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    padding: 4rem;
    align-items: center;
    background: var(--bg-gray);
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-right {
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-right {
    padding: 5rem 4rem;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.services-highlight {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header-center h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.methodology-split {
    display: flex;
    background: var(--bg-gray);
}

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

.method-left {
    padding: 5rem 4rem;
}

.method-content h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.method-step {
    margin-bottom: 2.5rem;
}

.method-step h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.method-step p {
    color: #4a4a4a;
    line-height: 1.8;
}

.method-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.impact-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-header h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.impact-stats-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.testimonial-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

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

.testimonial-left {
    padding: 5rem 4rem;
    background: var(--bg-gray);
}

.testimonial-content blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content cite {
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.form-section-split {
    display: flex;
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-left,
.form-right {
    flex: 1;
    padding: 2rem 4rem;
}

.form-left {
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.form-intro h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.secondary-cta {
    padding: 5rem 2rem;
    background: var(--bg-gray);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.site-footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background: var(--secondary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
}

.btn-sticky:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero-split .hero-left {
    padding: 4rem;
    background: var(--bg-gray);
}

.page-hero-split .hero-left h1 {
    font-size: 2.75rem;
}

.story-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.story-content-center h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-content-center p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.principles-split {
    background: var(--bg-light);
}

.principle-item {
    display: flex;
    min-height: 500px;
}

.principle-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.principle-left {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.principle-left h3 {
    color: var(--primary-color);
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
}

.principle-left p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-gray);
}

.team-header-center {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-header-center h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-header-center p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1;
    min-width: 260px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #4a4a4a;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

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

.values-left {
    padding: 0 4rem;
}

.values-content h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.values-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: var(--text-light);
}

.cta-about .cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-about .cta-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-detail-right h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.service-detail-right p {
    font-size: 1.075rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-pricing .price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-form-section {
    padding: 6rem 2rem;
    background: var(--bg-gray);
}

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

.form-container-center h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container-center p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-hero {
    padding: 5rem 2rem;
    background: var(--bg-gray);
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

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

.contact-info-left,
.contact-map-right {
    flex: 1;
}

.contact-info-left {
    padding: 4rem;
    background: var(--bg-light);
}

.contact-details h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

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

.contact-additional {
    padding: 5rem 2rem;
    background: var(--bg-gray);
}

.additional-info-center {
    max-width: 800px;
    margin: 0 auto;
}

.additional-info-center h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.additional-info-center p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.faq-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}

.faq-item p {
    font-size: 1.075rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-section {
    padding: 6rem 2rem;
    background: var(--bg-gray);
}

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

.thanks-content h1 {
    color: var(--primary-color);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.thanks-additional {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
}

.thanks-additional h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.875rem;
}

.step-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.legal-container h1 {
    color: var(--primary-color);
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

.effective-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    color: var(--primary-color);
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.legal-container h3 {
    color: var(--secondary-color);
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    font-size: 1.075rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-container ul {
    margin: 1.25rem 0 1.25rem 2rem;
}

.legal-container ul li {
    font-size: 1.075rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.625rem;
}

.legal-container a {
    color: var(--secondary-color);
    font-weight: 500;
}

.legal-container a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .methodology-split,
    .testimonial-split,
    .form-section-split,
    .page-hero-split,
    .values-split,
    .contact-split,
    .service-detail-card,
    .principle-item {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even),
    .service-detail-card:nth-child(even),
    .principle-item:nth-child(even) {
        flex-direction: column;
    }

    .hero-left,
    .intro-right,
    .method-left,
    .testimonial-left,
    .form-left,
    .form-right,
    .values-left,
    .contact-info-left {
        padding: 3rem 2rem;
    }

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

    .service-visual {
        min-width: 100%;
        min-height: 300px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .impact-stats-split {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-left,
    .intro-right,
    .method-left,
    .testimonial-left,
    .form-left,
    .form-right,
    .values-left,
    .contact-info-left {
        padding: 2rem 1.5rem;
    }

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

    .section-header-center h2,
    .impact-header h2,
    .team-header-center h2 {
        font-size: 1.875rem;
    }

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