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

:root {
    --primary: #2d5016;
    --secondary: #6b8e23;
    --accent: #8fbc3f;
    --dark: #1a2e0a;
    --light: #f4f7f0;
    --white: #ffffff;
    --text: #333333;
    --border: #d4e5c6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45,80,22,0.7) 0%, rgba(26,46,10,0.5) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

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

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
    background: #a0d045;
}

.image-dominant-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
}

.img-large {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

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

.text-overlay-box {
    flex: 0.8;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
}

.text-overlay-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-overlay-box p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.text-overlay-box .cta-secondary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    align-self: flex-start;
}

.text-overlay-box .cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.services-visual {
    padding: 5rem 5%;
    background: var(--light);
}

.services-visual h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(45,80,22,0.95) 0%, rgba(45,80,22,0) 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    color: var(--white);
}

.service-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

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

.service-info {
    padding: 1.5rem;
    background: var(--white);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-select-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-select-btn.selected {
    background: var(--accent);
    color: var(--dark);
}

.full-width-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-visual img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,46,10,0.65);
}

.full-width-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.full-width-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.full-width-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

.split-img {
    flex: 1;
    position: relative;
}

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

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.split-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.split-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.split-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
}

.form-visual-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

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

.form-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container .subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #a0d045;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta .cta-btn {
    padding: 0.9rem 2.5rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.sticky-cta .cta-btn:hover {
    background: #a0d045;
}

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

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

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

.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--accent);
}

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 600px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.cookie-accept:hover {
    background: #a0d045;
}

.cookie-reject {
    background: var(--border);
    color: var(--text);
}

.cookie-reject:hover {
    background: #c4d5b6;
}

.content-page {
    padding: 8rem 5% 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

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

.content-page p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.content-page li {
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 8rem 5% 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-hero {
    padding: 8rem 5% 3rem 5%;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.about-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.about-content .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--primary);
    line-height: 1.6;
}

.about-section {
    padding: 4rem 5%;
}

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

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

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.thanks-box h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.thanks-box .cta-primary {
    margin-top: 1rem;
}

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

    .image-dominant-section {
        flex-direction: column;
    }

    .split-visual-section {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .text-overlay-box,
    .split-content {
        padding: 2rem;
    }
}
