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

:root {
    --primary: #1a4d2e;
    --secondary: #4f772d;
    --accent: #90a955;
    --dark: #1f2937;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.8), rgba(79, 119, 45, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%234f772d" width="1200" height="800"/><path fill="%231a4d2e" d="M0 400L50 380C100 360 200 320 300 310C400 300 500 320 600 350C700 380 800 420 900 420C1000 420 1100 380 1150 360L1200 340V800H0Z"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.section-intro .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
}

.section-story {
    padding: 5rem 2rem;
    background: var(--white);
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

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

.story-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

.section-features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.section-visual-break {
    position: relative;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%2390a955" width="1200" height="400"/><circle cx="200" cy="100" r="80" fill="%234f772d" opacity="0.3"/><circle cx="900" cy="300" r="120" fill="%231a4d2e" opacity="0.3"/></svg>');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-break-text {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.visual-break-text h3 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.service-item {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.section-testimonials {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: #374151;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

.section-form {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.form-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.section-urgency {
    padding: 4rem 2rem;
    background: var(--accent);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.footer {
    padding: 3rem 2rem;
    background: var(--dark);
    color: var(--white);
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.sticky-cta.show {
    display: block;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

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

.page-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4b5563;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

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

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.thanks-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        box-shadow: 0 10px 20px var(--shadow);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .features-grid,
    .services-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
