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

:root {
    --primary: #2C5F2D;
    --secondary: #97BC62;
    --accent: #D4A373;
    --dark: #1a1a1a;
    --light: #f8f7f4;
    --gray: #6b6b6b;
}

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

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

header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 12px;
    background: #fff3cd;
    border-radius: 3px;
    margin-left: 20px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    margin-bottom: 80px;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 60px 80px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #1f4620 100%);
    color: white;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 60px;
    width: 60%;
    height: calc(100% - 60px);
    background-color: var(--accent);
}

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

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #c99565;
    transform: translateY(-2px);
}

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

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

.offset-left {
    flex: 1;
    min-width: 350px;
    padding: 60px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -40px;
}

.offset-right {
    flex: 1.2;
    min-width: 400px;
    margin-top: 40px;
}

.section-title-asymmetric {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.section-text {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-overlap {
    position: relative;
    background-color: var(--secondary);
}

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

.services-asymmetric {
    background: linear-gradient(to bottom, white 50%, var(--light) 50%);
    padding: 100px 0;
}

.services-intro {
    max-width: 600px;
    margin-bottom: 70px;
    padding-left: 80px;
}

.services-intro h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-offset {
    background: white;
    padding: 45px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: calc(33.333% - 20px);
}

.service-card-offset:nth-child(even) {
    margin-top: 40px;
}

.service-card-offset:nth-child(3) {
    margin-top: -60px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.service-card-offset h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card-offset p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin: 20px 0;
}

.service-price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.form-section-creative {
    background: var(--dark);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.form-section-creative::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.form-container-asymmetric {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background: white;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.form-submit:hover {
    background: #1f4620;
    transform: translateY(-1px);
}

.visual-break {
    height: 400px;
    background-color: var(--accent);
    position: relative;
    margin: 80px 0;
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
}

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

.testimonials-offset {
    padding: 100px 40px;
    background: white;
}

.testimonials-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--light);
    border-left: 5px solid var(--accent);
    position: relative;
}

.testimonial-card:nth-child(2) {
    margin-top: 50px;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.contact-asymmetric {
    display: flex;
    min-height: 500px;
}

.contact-info-panel {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 80px 60px;
}

.contact-info-panel h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-map-area {
    flex: 1.5;
    background-color: var(--secondary);
    position: relative;
}

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.cookie-accept:hover {
    background: #1f4620;
}

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.thanks-box h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    color: var(--dark);
    margin: 40px 0 20px;
}

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: var(--gray);
}

.legal-page ul li {
    margin-bottom: 10px;
}

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

.services-page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 40px;
}

.service-detail-card {
    background: white;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: var(--accent);
}

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

.service-detail-content {
    flex: 1.2;
    min-width: 350px;
    padding: 50px 45px;
}

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

.service-detail-content p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray);
    font-size: 16px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.about-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(to right, var(--light) 50%, white 50%);
}

.about-intro {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.about-text h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.about-image {
    flex: 1;
    min-width: 350px;
    background-color: var(--secondary);
}

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

.about-values {
    padding: 100px 40px;
    background: white;
}

.about-values h2 {
    font-size: 42px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 35px;
    background: var(--light);
    border-top: 4px solid var(--accent);
}

.value-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid var(--accent);
    padding: 30px 35px;
    margin: 60px 0;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.disclaimer strong {
    color: var(--dark);
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        clip-path: none;
        padding: 80px 40px 60px;
    }

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

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

    .offset-left,
    .offset-right {
        margin-top: 0;
    }

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

    .form-container-asymmetric {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) .service-detail-image {
        order: 1;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
    }
}
