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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6548;
}

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

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

.header-asymmetric {
    position: relative;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

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

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-items a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: #4a7c59;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem;
    margin-left: 8%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.hero-image-angled {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    transform: rotate(-3deg);
    overflow: hidden;
    background: #d4d4d4;
}

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

.intro-offset {
    padding: 6rem 4rem;
    background: #f5f5f5;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1.3;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-stats-right {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #4a7c59;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4a7c59;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.services-irregular {
    padding: 7rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 15%;
    color: #1a1a1a;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-offset {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
}

.card-wide {
    flex: 1 1 calc(65% - 1rem);
    margin-top: -2rem;
}

.card-elevated {
    flex: 1 1 calc(45% - 1rem);
    margin-top: 2rem;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #d4d4d4;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.8rem 1.8rem;
    background: #2a2a2a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #4a7c59;
}

.approach-split {
    display: flex;
    align-items: center;
    background: #fff;
    min-height: 70vh;
}

.approach-image {
    flex: 1;
    height: 70vh;
    overflow: hidden;
    background: #d4d4d4;
}

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

.approach-text {
    flex: 1;
    padding: 4rem;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.form-section-offset {
    padding: 6rem 4rem;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin-left: 20%;
    background: #fff;
    padding: 3rem;
    border-left: 5px solid #4a7c59;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
    background: #fff;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #3d6548;
}

.footer-irregular {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.thanks-content {
    max-width: 700px;
    background: #fff;
    padding: 4rem;
    text-align: center;
    border-top: 5px solid #4a7c59;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #f5f5f5;
    color: #4a7c59;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #3d6548;
}

.page-header {
    padding: 4rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 3.5rem;
    color: #1a1a1a;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1.5;
}

.about-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    background: #d4d4d4;
}

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: #4a7c59;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-item .service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
}

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

    .hero-content-offset {
        margin-left: 0;
        padding: 3rem 2rem;
    }

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

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

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

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

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

    .approach-image {
        width: 100%;
        height: 400px;
    }

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

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

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

    .about-image {
        width: 100%;
        height: 350px;
    }

    .services-list {
        flex-direction: column;
    }

    .service-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2.2rem;
    }

    .form-container {
        margin-left: 0;
    }
}