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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #7fa650;
    --accent-color: #f4a261;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --border-color: #ddd;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-accept:hover {
    background-color: #234a31;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header-asymmetric {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 8px 20px;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

.nav-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    transform: translateX(-20px);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    transform: translateX(15px);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-asymmetric {
    min-height: 85vh;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 80px 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    transform: translateY(-30px);
}

.hero-title-rotated {
    font-size: 52px;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    transform: translateX(-10px);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    transform: translateX(20px);
}

.cta-primary:hover {
    background-color: #234a31;
    transform: translateX(20px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(40px) translateY(20px);
}

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

.intro-diagonal {
    padding: 120px 40px 100px 80px;
    background-color: #fff;
}

.content-wrapper-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.5;
    transform: translateY(20px);
}

.intro-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
    transform: translateX(-15px);
}

.intro-block-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-box-overlap {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 50px 35px;
    border-radius: 8px;
    transform: translateY(-40px) translateX(20px);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.insight-section-offset {
    padding: 100px 60px 100px 40px;
    background-color: var(--light-bg);
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-image-side {
    flex: 1;
    transform: translateX(-30px);
    background-color: var(--border-color);
}

.insight-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-text-irregular {
    flex: 1;
    transform: translateY(25px);
}

.insight-text-irregular h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-text-irregular p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-highlight {
    margin-top: 30px;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.insight-highlight p {
    font-size: 15px;
    margin-bottom: 0;
}

.insight-highlight strong {
    color: var(--primary-color);
}

.insight-highlight a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.insight-highlight a:hover {
    text-decoration: underline;
}

.services-asymmetric {
    padding: 110px 40px 100px 70px;
    background-color: #fff;
}

.services-header-offset {
    max-width: 1300px;
    margin: 0 auto 70px;
    transform: translateX(30px);
}

.services-header-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-offset-1 {
    transform: translateX(-20px);
}

.card-offset-2 {
    transform: translateX(15px) translateY(30px);
}

.card-offset-3 {
    transform: translateX(-10px) translateY(-20px);
}

.card-offset-4 {
    transform: translateX(25px) translateY(15px);
}

.card-offset-5 {
    transform: translateX(-15px) translateY(10px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--border-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.testimonials-irregular {
    padding: 100px 50px 100px 90px;
    background-color: var(--light-bg);
}

.testimonials-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title-diagonal {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 60px;
    transform: translateX(-25px);
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background-color: #fff;
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-style: normal;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.testimonial-offset-1 {
    transform: translateX(40px);
    max-width: 700px;
}

.testimonial-offset-2 {
    transform: translateX(-30px);
    max-width: 750px;
    margin-left: auto;
}

.testimonial-offset-3 {
    transform: translateX(60px);
    max-width: 680px;
}

.testimonial p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.form-section-offset {
    padding: 110px 40px 100px 100px;
    background-color: #fff;
}

.form-container-irregular {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(-50px);
}

.form-intro {
    margin-bottom: 45px;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-asymmetric {
    background-color: var(--light-bg);
    padding: 45px 50px;
    border-radius: 10px;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.08);
    transform: translateX(30px);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.benefits-overlap {
    padding: 100px 70px 100px 40px;
    background-color: var(--light-bg);
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    flex: 1;
    transform: translateX(30px) translateY(-25px);
    background-color: var(--border-color);
}

.benefits-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.benefits-content-diagonal {
    flex: 1;
    transform: translateY(15px);
}

.benefits-content-diagonal h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.3;
}

.benefits-list-irregular {
    list-style: none;
}

.benefits-list-irregular li {
    font-size: 17px;
    color: var(--text-dark);
    padding: 15px 0 15px 35px;
    position: relative;
    line-height: 1.6;
}

.benefits-list-irregular li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: bold;
}

.references-section {
    padding: 60px 40px;
    background-color: #fff;
}

.references-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.references-list {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 20px;
}

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

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

.disclaimer-section {
    padding: 50px 40px;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 70px 40px 30px;
}

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

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

.footer-brand {
    transform: translateX(-15px);
}

.footer-brand h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

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

.footer-block a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .content-wrapper-irregular,
    .insight-container,
    .benefits-container {
        flex-direction: column;
    }

    .hero-title-rotated {
        font-size: 42px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .service-card {
        transform: none !important;
    }

    .testimonial {
        transform: none !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-title-rotated {
        font-size: 34px;
    }

    .intro-block-left h2,
    .services-header-offset h2 {
        font-size: 30px;
    }

    .nav-offset,
    .hero-content-offset,
    .intro-diagonal,
    .services-asymmetric,
    .form-section-offset {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stats-box-overlap,
    .form-container-irregular,
    .contact-form-asymmetric {
        transform: none;
    }

    .footer-content-irregular {
        flex-direction: column;
    }
}