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

:root {
    --primary: #2d5016;
    --primary-light: #4a7c2a;
    --accent: #f4a621;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

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

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

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    color: var(--white);
    padding: 40px 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--accent);
}

nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

nav a:hover {
    border-left-color: var(--accent);
    padding-left: 20px;
}

.ad-label {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
}

main {
    margin-right: 280px;
    padding-top: 0;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    width: 55%;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 166, 33, 0.3);
}

.hero-image {
    position: absolute;
    right: 10%;
    top: 15%;
    width: 400px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    transform: rotate(-8deg);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

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

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.content-block-large {
    flex: 1.5;
    min-width: 350px;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transform: translateY(-40px);
}

.content-block-small {
    flex: 1;
    min-width: 280px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    transform: translateY(40px);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.content-block-small .section-heading {
    color: var(--accent);
}

.overlap-section {
    position: relative;
    margin: 100px 0;
}

.overlap-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.overlap-image {
    flex: 1;
    min-height: 500px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

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

.overlap-content {
    flex: 1.3;
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    position: relative;
    z-index: 2;
    margin-left: -80px;
    border-radius: 0 12px 12px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(odd) {
    transform: translateY(-20px);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:hover {
    transform: translateY(0) scale(1.03);
}

.service-image {
    height: 220px;
    background: var(--light-gray);
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-select {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.irregular-section {
    background: var(--light-gray);
    padding: 100px 0;
    position: relative;
}

.irregular-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.irregular-text {
    flex: 1.2;
    min-width: 350px;
    padding-right: 40px;
}

.irregular-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.visual-box {
    background: var(--primary);
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    transform: rotate(3deg);
}

.form-section {
    padding: 100px 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 60px;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.form-wrapper form {
    transform: rotate(1deg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

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

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

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 166, 33, 0.3);
}

.testimonial-section {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    margin-right: 280px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

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

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    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 {
    transform: translateY(-2px);
}

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

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

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

.disclaimer {
    background: rgba(244, 166, 33, 0.1);
    padding: 30px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.citation {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.citation:hover {
    text-decoration: underline;
}

.references {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.references h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.references ol {
    padding-left: 25px;
}

.references li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references a {
    color: var(--accent);
    word-break: break-all;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.page-content h2 {
    color: var(--primary);
    margin: 40px 0 20px;
    font-size: 2rem;
}

.page-content h3 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.contact-info {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

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

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

.thanks-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    header {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    main {
        margin-right: 0;
    }

    footer {
        margin-right: 0;
    }

    .cookie-banner {
        right: 0;
    }

    nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-text {
        width: 100%;
        padding-left: 0;
    }

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

    .hero-image {
        position: static;
        width: 100%;
        height: 400px;
        transform: rotate(0);
        margin-top: 40px;
    }

    .overlap-wrapper {
        flex-direction: column;
    }

    .overlap-image {
        border-radius: 12px 12px 0 0;
    }

    .overlap-content {
        margin-left: 0;
        margin-top: -50px;
        border-radius: 0 0 12px 12px;
    }

    .sticky-cta {
        bottom: 20px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .content-block-large,
    .content-block-small {
        transform: translateY(0);
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .form-wrapper {
        padding: 40px 25px;
        transform: rotate(0);
    }
}