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

:root {
    --primary: #2d5f3f;
    --secondary: #7fa88e;
    --accent: #c8a882;
    --dark: #1a2f23;
    --light: #f4f1ed;
    --white: #ffffff;
    --text: #2c3e36;
    --border: #d4cec4;
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

.ad-notice {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--light);
    padding: 6px 14px;
    font-size: 0.75rem;
    color: var(--text);
    border-radius: 0 0 4px 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin-left: 60px;
    padding: 48px 42px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-30px);
}

.hero-content-offset h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-offset {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 65%;
    height: 520px;
    z-index: 1;
}

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

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

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

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

.section-overlap {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 100px;
}

.content-block-left {
    flex: 1;
    background: var(--light);
    padding: 64px 52px;
    transform: translateX(40px);
    z-index: 2;
}

.content-block-left h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.3;
}

.content-block-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-block-right {
    flex: 1;
    position: relative;
    transform: translateX(-40px);
    background: var(--secondary);
}

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

.services-offset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 80px;
}

.service-card-irregular {
    flex-basis: calc(50% - 0px);
    padding: 48px 40px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
}

.service-card-irregular:nth-child(odd) {
    transform: translateY(-30px);
    background: var(--light);
}

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

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

.service-card-irregular p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text);
}

.price-tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.section-title-offset {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 64px;
    padding-left: 80px;
    position: relative;
}

.section-title-offset::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.form-section-diagonal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    transform: skewY(-2deg);
}

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

.form-wrapper-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 52px 48px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-wrapper-card h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    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: 120px;
}

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

.submit-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.image-grid-staggered {
    display: flex;
    gap: 24px;
    margin-top: 60px;
}

.image-col {
    flex: 1;
}

.image-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 24px;
    background: var(--light);
}

.image-col:nth-child(1) {
    transform: translateY(-40px);
}

.image-col:nth-child(3) {
    transform: translateY(-40px);
}

.text-block-centered {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.text-block-centered h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 24px;
}

.text-block-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.disclaimer-box {
    background: var(--light);
    padding: 32px 36px;
    margin: 60px 0;
    border-left: 4px solid var(--accent);
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    padding: 80px 0 60px;
    background: var(--light);
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

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

.page-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 8px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 32px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.contact-map {
    flex: 1;
    background: var(--light);
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.hamburger {
    display: none;
}

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

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
        transform: none;
    }

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

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

    .content-block-left,
    .image-block-right {
        transform: none;
    }

    .service-card-irregular {
        flex-basis: 100%;
    }

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

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .image-grid-staggered {
        flex-direction: column;
    }

    .image-col:nth-child(1),
    .image-col:nth-child(3) {
        transform: none;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: block;
    }

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