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

:root {
    --primary: #2d5016;
    --secondary: #7a9b57;
    --accent: #c4a962;
    --dark: #1a1a1a;
    --light: #f8f9f5;
    --grey: #6b7264;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.ad-disclosure {
    background: #fef9e7;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #f5e5b8;
}

.main-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.main-nav a {
    writing-mode: vertical-rl;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px;
}

.main-nav a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px 80px 100px;
    background: var(--light);
}

.hero-content-offset {
    max-width: 550px;
    position: relative;
    z-index: 10;
    margin-left: 60px;
}

.hero-content-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-float {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    height: 75%;
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

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

.offset-section {
    padding: 120px 40px;
    position: relative;
}

.offset-content-left {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.offset-content-right {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-direction: row-reverse;
}

.text-block-narrow {
    flex: 1;
    max-width: 480px;
}

.text-block-narrow h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-block-narrow p {
    font-size: 17px;
    color: var(--grey);
    margin-bottom: 20px;
}

.visual-block-wide {
    flex: 1.3;
    position: relative;
}

.image-overlap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light);
}

.image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.services-grid-irregular {
    padding: 100px 40px;
    background: var(--white);
}

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

.section-title-offset {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 60px;
    margin-left: 140px;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card-irregular {
    background: var(--light);
    padding: 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card-irregular:nth-child(1) {
    width: calc(60% - 20px);
    margin-left: 0;
}

.service-card-irregular:nth-child(2) {
    width: calc(40% - 20px);
    margin-top: 60px;
}

.service-card-irregular:nth-child(3) {
    width: calc(45% - 20px);
    margin-left: 80px;
}

.service-card-irregular:nth-child(4) {
    width: calc(55% - 20px);
    margin-top: -40px;
}

.service-card-irregular:nth-child(5) {
    width: calc(50% - 20px);
    margin-left: 120px;
}

.service-card-irregular:nth-child(6) {
    width: calc(50% - 20px);
    margin-top: 40px;
}

.service-card-irregular:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-irregular h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card-irregular p {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.service-card-irregular .cta-btn {
    display: inline-block;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.cta-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.form-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 180px;
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.form-container-offset h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    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(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.testimonial-float {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 380px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-float p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-float cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.9;
}

.about-overlap-section {
    padding: 100px 40px;
    background: var(--white);
    position: relative;
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about-text-main {
    max-width: 600px;
    margin-left: 0;
    padding: 50px;
    background: var(--light);
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

.about-text-main h2 {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-text-main p {
    font-size: 17px;
    color: var(--grey);
    margin-bottom: 18px;
}

.about-image-overlap {
    position: absolute;
    right: 0;
    top: 50px;
    width: 50%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--secondary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-asymmetric {
    background: var(--dark);
    color: var(--light);
    padding: 80px 40px 40px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column:first-child {
    margin-left: 80px;
}

.footer-column:last-child {
    margin-right: 100px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.disclaimer-section {
    background: #f4f4f4;
    padding: 40px;
    margin: 60px 40px;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.disclaimer-section p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
}

.references-list {
    padding: 60px 40px;
    background: var(--light);
}

.references-list h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.references-list ol {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 25px;
}

.references-list li {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

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

.legal-page {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 24px;
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-page {
    padding: 100px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.services-page {
    padding: 100px 40px;
}

.services-page h1 {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.services-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--light);
    padding: 50px;
    border-radius: 15px;
}

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

.service-detail-card:nth-child(odd) {
    margin-right: 80px;
}

.service-detail-image {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary);
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content .service-price {
    margin-bottom: 30px;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.selected-service strong {
    color: var(--primary);
    font-size: 20px;
}

@media (max-width: 1200px) {
    .main-nav {
        right: 20px;
        padding: 20px 15px;
        gap: 15px;
    }

    .hero-asymmetric {
        padding: 60px 30px;
    }

    .hero-content-offset {
        margin-left: 20px;
    }

    .hero-content-offset h1 {
        font-size: 48px;
    }

    .hero-image-float {
        right: -40px;
        width: 50%;
    }

    .offset-content-left,
    .offset-content-right {
        flex-direction: column;
        gap: 50px;
    }

    .service-card-irregular {
        width: 100% !important;
        margin: 0 !important;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .testimonial-float {
        position: static;
        transform: none;
        margin-top: 40px;
        max-width: 100%;
    }

    .about-image-overlap {
        position: static;
        width: 100%;
        margin-top: 40px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even),
    .service-detail-card:nth-child(odd) {
        flex-direction: column;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: row;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 20px;
        padding: 15px 25px;
        border-radius: 50px;
    }

    .main-nav a {
        writing-mode: horizontal-tb;
        padding: 5px 10px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-float {
        display: none;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 38px;
    }

    .footer-column:first-child,
    .footer-column:last-child {
        margin: 0;
    }
}