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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.header-container {
    background: linear-gradient(135deg, #2d5f3f 0%, #4a8b62 100%);
    padding: 0;
    position: relative;
}

.ad-disclosure {
    background: rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transform: rotate(-2deg);
}

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover {
    transform: translateY(-2px);
    color: #b8e6cc;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b8e6cc;
    transition: width 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: #f8fdf9;
}

.hero-content-offset {
    width: 45%;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a3a2b;
    margin-bottom: 1.5rem;
    transform: translateX(-15px);
}

.hero-content-offset p {
    font-size: 1.2rem;
    color: #4a6f5a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

.cta-primary {
    background: #3d7a52;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    background: #2d5f3f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 122, 82, 0.3);
}

.hero-image-offset {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(30px);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.card-stats {
    top: 15%;
    right: -8%;
    width: 220px;
    transform: rotate(3deg);
}

.card-stats h3 {
    font-size: 2.5rem;
    color: #3d7a52;
    margin-bottom: 0.5rem;
}

.card-stats p {
    color: #6b8778;
    font-size: 0.95rem;
}

.about-offset-section {
    padding: 6rem 5%;
    background: #fff;
    position: relative;
}

.about-grid-irregular {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-block {
    width: 60%;
    transform: translateY(40px);
}

.about-text-block h2 {
    font-size: 2.8rem;
    color: #1a3a2b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #5a6f65;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-visual-block {
    width: 40%;
    position: relative;
}

.overlap-container {
    position: relative;
    height: 450px;
}

.img-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 320px;
    background: #e8f3ed;
    overflow: hidden;
    border-radius: 8px;
}

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

.img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 240px;
    background: #d4e8dc;
    overflow: hidden;
    border-radius: 8px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.services-creative {
    padding: 7rem 5%;
    background: linear-gradient(170deg, #f0f7f3 0%, #ffffff 50%, #f8fdf9 100%);
}

.section-header-offset {
    margin-bottom: 4rem;
    transform: translateX(8%);
}

.section-header-offset h2 {
    font-size: 3rem;
    color: #1a3a2b;
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #6b8778;
    max-width: 600px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
}

.service-card:nth-child(1) {
    width: calc(55% - 1.25rem);
    transform: rotate(-1deg);
}

.service-card:nth-child(2) {
    width: calc(45% - 1.25rem);
    transform: translateY(30px) rotate(1deg);
}

.service-card:nth-child(3) {
    width: calc(48% - 1.25rem);
    transform: rotate(0.5deg);
}

.service-card:nth-child(4) {
    width: calc(52% - 1.25rem);
    transform: translateY(-20px) rotate(-0.5deg);
}

.service-card:nth-child(5) {
    width: calc(60% - 1.25rem);
    transform: rotate(1deg);
}

.service-card:nth-child(6) {
    width: calc(40% - 1.25rem);
    transform: translateY(40px) rotate(-1deg);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow: 0 15px 40px rgba(61, 122, 82, 0.2);
}

.service-icon {
    width: 100%;
    height: 180px;
    background: #e8f3ed;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5a6f65;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: #3d7a52;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.cta-secondary {
    background: transparent;
    color: #3d7a52;
    border: 2px solid #3d7a52;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: #3d7a52;
    color: #fff;
    transform: translateY(-2px);
}

.form-section-creative {
    padding: 6rem 5%;
    background: #2d5f3f;
    position: relative;
    overflow: hidden;
}

.form-section-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.form-container-offset {
    max-width: 900px;
    margin: 0 0 0 8%;
    position: relative;
    z-index: 10;
}

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

.form-container-offset p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8e6cc;
    background: rgba(255, 255, 255, 0.15);
}

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

.form-group select option {
    background: #2d5f3f;
    color: #fff;
}

.submit-btn {
    background: #fff;
    color: #2d5f3f;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #b8e6cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-asymmetric {
    background: #1a3a2b;
    padding: 4rem 5% 2rem 5%;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block:nth-child(1) {
    transform: translateY(20px);
}

.footer-block:nth-child(3) {
    transform: translateY(-15px);
}

.footer-block h4 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #b8e6cc;
}

.footer-block p,
.footer-block ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

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

.footer-block a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.7rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a2b;
    padding: 1.5rem 5%;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-text {
    color: #fff;
    flex: 1;
    margin-right: 2rem;
}

.cookie-text a {
    color: #b8e6cc;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #3d7a52;
    color: #fff;
}

.cookie-accept:hover {
    background: #4a8b62;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

.page-header {
    background: linear-gradient(135deg, #2d5f3f 0%, #4a8b62 100%);
    padding: 4rem 5%;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    color: #2d5f3f;
    margin: 2.5rem 0 1rem 0;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #3d7a52;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5a6f65;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #5a6f65;
}

.content-section li {
    margin-bottom: 0.8rem;
}

.contact-content {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
}

.contact-info-block {
    width: 55%;
    transform: translateY(30px);
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #1a3a2b;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fdf9;
    border-radius: 8px;
    border-left: 4px solid #3d7a52;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.info-item p {
    color: #5a6f65;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-visual {
    width: 45%;
    height: 500px;
    background: #e8f3ed;
    border-radius: 10px;
    overflow: hidden;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(170deg, #f0f7f3 0%, #ffffff 100%);
}

.thanks-card {
    background: #fff;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    transform: rotate(-1deg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #3d7a52;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: #1a3a2b;
    margin-bottom: 1.5rem;
}

.thanks-card p {
    font-size: 1.15rem;
    color: #5a6f65;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

    .hero-content-offset,
    .hero-image-offset {
        width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .card-stats {
        right: 5%;
    }

    .about-grid-irregular,
    .contact-content {
        flex-direction: column;
    }

    .about-text-block,
    .about-visual-block,
    .contact-info-block,
    .contact-visual {
        width: 100%;
        transform: translateY(0);
    }

    .services-grid-irregular .service-card {
        width: 100% !important;
        transform: rotate(0deg) !important;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-block {
        transform: translateY(0) !important;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-text {
        margin-right: 0;
    }
}
