/* Reset and Base Styles */
* {
    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: #333;
    font-size: 16px;
}

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #555;
    font-weight: 500;
}

.nav-right a:hover {
    color: #2d5016;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 3rem 5%;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-visual img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-visual {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 5%;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Value Cards */
.value-cards {
    display: flex;
    padding: 4rem 5%;
    gap: 2rem;
    background: #fff;
}

.card-item {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #2d5016;
}

.card-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.card-item p {
    color: #666;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 5rem 5%;
    background: #f8f9fa;
}

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

.services-header h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2d5016;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-card .price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.service-card .btn-secondary {
    display: block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background: #2d5016;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.service-card .btn-secondary:hover {
    background: #1f3a0f;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: center;
    background: #2d5016;
    color: #fff;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 5%;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-visual {
    flex: 1;
}

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

/* CTA Sections */
.cta-action {
    text-align: center;
    padding: 5rem 5%;
    background: #fff;
}

.cta-action h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.cta-action p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5016;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2d5016;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
}

.cta-primary-large:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
}

/* Form Section Split */
.form-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.split-form {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.2rem;
    color: #666;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container-centered h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2d5016;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #8bc34a;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #2d5016;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #1f3a0f;
}

.btn-cookie-reject {
    background: #555;
    color: #fff;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c28 100%);
    color: #fff;
    padding: 5rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Story Section */
.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.story-content {
    flex: 1;
    padding-right: 3rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background: #fff;
}

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

.team-content {
    flex: 1;
    padding: 0 3rem;
}

.team-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Mission Highlight */
.mission-highlight {
    text-align: center;
    padding: 5rem 5%;
    background: #2d5016;
    color: #fff;
}

.mission-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-highlight p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    min-width: 100px;
}

.timeline-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Services Intro Split */
.services-intro-split {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    gap: 3rem;
}

.services-intro-content {
    flex: 1;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-intro-visual {
    flex: 1;
}

.services-intro-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 5%;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background: #fff;
}

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

.service-detail-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-left: 4px solid #2d5016;
}

.service-detail.reverse .price-box {
    background: #f8f9fa;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2d5016;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
}

/* CTA Services */
.cta-services {
    text-align: center;
    padding: 4rem 5%;
    background: #2d5016;
    color: #fff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Split */
.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-block a {
    color: #2d5016;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.contact-note {
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #2d5016;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

/* Location Info */
.location-info {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.location-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.location-grid {
    display: flex;
    gap: 2rem;
}

.location-item {
    flex: 1;
    padding: 2rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.location-item h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.location-item p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 5%;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c28 100%);
    color: #fff;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: #fff;
    color: #2d5016;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-details {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.thanks-info {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.thanks-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    padding: 2rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info-card a {
    color: #2d5016;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    color: #999;
    font-style: italic;
}

.cookie-table {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #2d5016;
}

.cookie-table h3 {
    color: #2d5016;
    margin-bottom: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .intro-split.reverse,
    .testimonial-split,
    .split-form,
    .story-split,
    .team-split,
    .team-split.reverse,
    .services-intro-split,
    .service-detail,
    .service-detail.reverse,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-visual img {
        height: 400px;
    }

    .value-cards,
    .services-grid,
    .values-grid,
    .location-grid,
    .faq-grid,
    .steps-grid,
    .info-cards,
    .footer-content {
        flex-direction: column;
    }

    .form-intro,
    .story-content,
    .team-content {
        padding-right: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

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