/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.btn-accept:hover {
    background: #45a049;
}

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

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
    gap: 35px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2c5f2d;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5f2d;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Split Layout */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff7 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: #2c5f2d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.25);
}

.cta-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.35);
}

.cta-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

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

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

/* Split Layout Components */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: column-reverse;
}

.split-text,
.split-image {
    flex: 1;
    width: 100%;
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.split-text h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Sections */
section {
    padding: 70px 0;
}

.intro-section,
.benefits-split,
.technology-split,
.services-preview-split,
.final-cta-split {
    background: #fff;
}

.intro-section {
    background: #f9fafb;
}

.benefits-split {
    background: #fff;
}

.technology-split {
    background: #f4f8f4;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.benefits-list li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.tech-list strong {
    color: #2c5f2d;
}

/* Link Arrow */
.link-arrow {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    background: #fff;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

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

.process-card {
    background: #f9fafb;
    padding: 35px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.process-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
}

.process-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Testimonials */
.testimonials-section {
    background: #f4f8f4;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #2c5f2d;
    font-weight: 600;
}

/* Services Preview */
.services-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.service-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.price {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 700;
}

/* Form Section */
.form-section {
    background: #f9fafb;
    padding: 80px 20px;
}

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

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

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    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: #2c5f2d;
}

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

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

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
    padding: 70px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Main */
.services-main {
    padding: 80px 20px;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-split:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.service-price {
    font-size: 24px;
    color: #2c5f2d;
    font-weight: 700;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 24px;
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-block h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-block p.note {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.contact-block a {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-map {
    width: 100%;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(44, 95, 45, 0.95);
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-cta {
    padding: 60px 20px;
    background: #f9fafb;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cta-box h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 30px;
    font-weight: 600;
}

.thanks-info {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-next h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.thanks-next ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thanks-next li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-extra {
    padding: 60px 20px;
    background: #f9fafb;
}

.thanks-extra h2 {
    text-align: center;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.extra-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.extra-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.extra-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.extra-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.extra-card a {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 15px;
}

/* Legal Content */
.legal-content {
    padding: 60px 20px;
    background: #fff;
}

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

.legal-article h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 15px 0 20px 20px;
}

.legal-article ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-article ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

.legal-article a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-article a:hover {
    color: #234a24;
}

/* About Page */
.about-intro-split {
    padding: 80px 20px;
}

.values-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.numbers-section {
    padding: 80px 20px;
    background: #fff;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

.number {
    font-size: 52px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.number-card p {
    font-size: 16px;
    color: #555;
}

.team-split,
.approach-section {
    padding: 80px 20px;
}

.team-split {
    background: #f4f8f4;
}

.certifications-section {
    padding: 80px 20px;
    background: #fff;
}

.cert-list {
    max-width: 800px;
    margin: 0 auto;
}

.cert-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-list li {
    padding: 20px 25px;
    background: #f9fafb;
    border-left: 4px solid #2c5f2d;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    border-radius: 4px;
}

.cta-section {
    padding: 80px 20px;
    background: #f4f8f4;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .split-layout {
        flex-direction: row;
        gap: 60px;
    }

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

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

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-card {
        flex: 1;
        min-width: 250px;
    }

    .testimonials-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

    .service-card-split {
        flex-direction: row;
        align-items: center;
    }

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

    .service-image,
    .service-content {
        flex: 1;
    }

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

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

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .extra-links {
        flex-direction: row;
    }

    .extra-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-card {
        flex: 1;
        min-width: 200px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 58px;
    }

    .split-text h2 {
        font-size: 42px;
    }
}

/* Mobile Navigation Overlay */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}