* {
    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: #1a1a1a;
    overflow-x: hidden;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-offset {
    margin-top: 80px;
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-left {
    width: 45%;
    padding: 8rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1f4620;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.hero-image-right {
    width: 60%;
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    background: #e0e0e0;
}

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

.intro-diagonal {
    padding: 6rem 5%;
    background: white;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.content-block-small {
    width: 50%;
    padding-left: 10%;
}

.content-block-small h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block-small p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.stats-offset {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #2c5f2d;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transform: rotate(-2deg);
}

.stat-card:nth-child(2) {
    transform: rotate(3deg);
    margin-left: 4rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.services-preview-asymmetric {
    padding: 6rem 5%;
    background: #f8f9fa;
    position: relative;
}

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

.service-cards-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-left: 5%;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 1.5rem);
    transition: transform 0.3s;
}

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

.service-card.card-1 {
    margin-top: 0;
}

.service-card.card-2 {
    margin-top: 3rem;
}

.service-card.card-3 {
    margin-top: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.75rem;
    color: #2c5f2d;
    font-weight: 700;
    margin: 1rem 1.5rem;
}

.service-card .link-arrow {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.service-card .link-arrow:hover {
    color: #1f4620;
}

.service-card .link-arrow::after {
    content: ' →';
}

.benefits-split {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: white;
}

.benefit-text {
    width: 50%;
    padding-left: 5%;
}

.benefit-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.checklist-offset {
    list-style: none;
    margin-top: 2rem;
}

.checklist-offset li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    font-size: 1.05rem;
}

.checklist-offset li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefit-image {
    width: 45%;
    position: relative;
}

.benefit-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e0e0e0;
    transform: rotate(1deg);
}

.form-section-tilted {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4620 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

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

.form-container p {
    color: #555;
    margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1f4620;
    transform: translateY(-2px);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col.col-1 {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.footer-col p {
    color: #bbb;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #2c5f2d;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    color: #ddd;
    flex: 1;
}

.cookie-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #2c5f2d;
    color: white;
}

.btn-accept:hover {
    background: #1f4620;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid #555;
}

.btn-reject:hover {
    border-color: white;
}

.thanks-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    margin-top: 80px;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.page-content {
    margin-top: 80px;
    padding: 4rem 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

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

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

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

.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1rem);
}

.service-detail-card h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-detail-card .price-large {
    font-size: 2rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.service-detail-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
}

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

    .hero-content-left {
        width: 100%;
        padding: 4rem 5%;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
    }

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

    .content-block-small {
        width: 100%;
        padding-left: 0;
    }

    .stats-offset {
        width: 100%;
    }

    .service-cards-irregular {
        flex-direction: column;
    }

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

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

    .benefit-text,
    .benefit-image {
        width: 100%;
    }

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

    .service-detail-card {
        width: 100%;
    }
}