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

:root {
    --primary: #2c5f2d;
    --secondary: #97bc62;
    --accent: #ff6b35;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gray: #666;
}

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

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

nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
    display: block;
}

nav a:hover {
    background: var(--primary);
    color: white;
}

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}

.hero-content-left {
    width: 55%;
    padding: 80px 0 80px 100px;
    position: relative;
    z-index: 2;
}

.hero-image-right {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 50%;
    height: 80%;
    transform: rotate(-3deg);
    background-color: var(--secondary);
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

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

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin: 100px 0;
}

.content-block-offset {
    width: 45%;
    padding: 60px;
    background: var(--light);
    position: relative;
    z-index: 2;
    margin-left: 100px;
    margin-top: 80px;
    border-radius: 15px;
}

.image-overlap {
    position: absolute;
    right: 100px;
    top: -50px;
    width: 48%;
    height: 110%;
    background-color: var(--primary);
}

.image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

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

.content-block-offset p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
}

.section-reverse {
    flex-direction: row-reverse;
}

.section-reverse .content-block-offset {
    margin-left: 0;
    margin-right: 100px;
}

.section-reverse .image-overlap {
    right: auto;
    left: 100px;
}

.services-irregular {
    padding: 120px 50px;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
}

.services-irregular h2 {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

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

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

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

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 0;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section-diagonal {
    background: var(--primary);
    padding: 100px 50px;
    position: relative;
    margin: 100px 0;
    transform: skewY(-2deg);
}

.form-section-diagonal > * {
    transform: skewY(2deg);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.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;
}

#selected-service-display {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: none;
}

#selected-service-display.active {
    display: block;
}

#selected-service-display p {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 100px 50px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    width: 45%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(2deg);
    background-color: var(--secondary);
}

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

.about-text {
    width: 55%;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-asymmetric {
    display: flex;
    padding: 100px 50px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    width: 40%;
}

.contact-info h2 {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-item p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
}

.contact-map {
    width: 60%;
    height: 500px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 18px;
    transform: rotate(-1deg);
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 50px 30px;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid var(--accent);
    padding: 30px;
    margin: 60px 50px;
    border-radius: 10px;
}

.disclaimer h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.disclaimer p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
    background: var(--primary);
}

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

.cookie-reject:hover {
    background: white;
    color: var(--dark);
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.8;
}

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

.thanks-container h1 {
    color: var(--primary);
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.checkmark {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 50px;
    color: white;
}

@media (max-width: 1024px) {
    nav {
        position: static;
        transform: none;
        border-radius: 0;
        padding: 20px;
    }

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

    .hero-offset {
        flex-direction: column;
        padding: 50px 30px;
    }

    .hero-content-left {
        width: 100%;
        padding: 40px 0;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
    }

    h1 {
        font-size: 48px;
    }

    .section-asymmetric {
        flex-direction: column;
        margin: 50px 0;
    }

    .content-block-offset {
        width: 100%;
        margin: 20px;
    }

    .image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        left: 0;
        top: 0;
        margin: 20px;
    }

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

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

    .about-split {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

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

    .contact-info,
    .contact-map {
        width: 100%;
    }

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