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

:root {
    --primary: #2d6a4f;
    --secondary: #52b788;
    --accent: #f4a261;
    --dark: #1b4332;
    --light: #d8f3dc;
    --white: #ffffff;
    --gray: #6c757d;
    --text: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    position: fixed;
    top: 40px;
    left: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 1000;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 50px 80px 50px;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-content-offset {
    max-width: 650px;
    margin-left: 8%;
    margin-top: -5%;
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

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

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

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

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

.section-offset-left {
    padding: 120px 50px 120px 15%;
    background: var(--white);
    position: relative;
}

.section-offset-right {
    padding: 120px 15% 120px 50px;
    background: var(--light);
    position: relative;
}

.section-asymmetric {
    padding: 100px 50px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.section-asymmetric.reverse {
    flex-direction: row-reverse;
}

.content-box-offset {
    flex: 1;
    max-width: 580px;
}

.content-box-offset h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-box-offset h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.content-box-offset p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.visual-box-overlap {
    flex: 1;
    position: relative;
}

.overlap-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    margin-bottom: 30px;
}

.overlap-card:nth-child(2) {
    transform: rotate(2deg) translateX(40px);
    background: var(--light);
}

.overlap-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.overlap-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 50px;
    background: var(--white);
}

.service-card-offset {
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    transition: all 0.3s;
    position: relative;
}

.service-card-offset:nth-child(odd) {
    transform: translateY(-20px);
}

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

.service-card-offset:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.service-card-offset p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.cta-inline {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    transition: all 0.3s;
}

.cta-inline:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 20px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(244, 162, 97, 0.5);
}

.irregular-container {
    padding: 100px 50px;
    background: var(--light);
}

.stagger-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stagger-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.stagger-item:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.stagger-item:nth-child(odd) {
    margin-right: 10%;
}

.stagger-text {
    flex: 1;
}

.stagger-text h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.stagger-text p {
    color: var(--gray);
    font-size: 1.1rem;
}

.stagger-visual {
    flex: 1;
    height: 300px;
    background: var(--secondary);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-section-irregular {
    padding: 120px 50px;
    background: var(--white);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    background: var(--light);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

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

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

.footer-column a:hover {
    color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 67, 50, 0.98);
    color: var(--white);
    padding: 25px 50px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
}

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

.cookie-text {
    flex: 1;
    max-width: 800px;
}

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

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

.btn-accept {
    background: var(--secondary);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--primary);
}

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
}

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

.legal-page h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-page {
    padding: 150px 50px 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    height: 500px;
    background: var(--secondary);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .hero-content-offset h1 {
        font-size: 3rem;
    }

    .hero-image-overlap {
        width: 50%;
        right: -5%;
    }

    .section-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .section-asymmetric.reverse {
        flex-direction: column;
    }

    .stagger-item:nth-child(even),
    .stagger-item:nth-child(odd) {
        flex-direction: column;
        margin: 0;
    }

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

@media (max-width: 768px) {
    header {
        top: 20px;
        right: 20px;
        left: 20px;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        top: 0;
        left: 0;
    }

    nav {
        padding: 10px 20px;
        gap: 15px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

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

    .hero-image-overlap {
        display: none;
    }

    .section-offset-left,
    .section-offset-right {
        padding: 80px 30px;
    }

    .service-card-offset {
        flex: 1 1 100%;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 30px;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
