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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-offset-block {
    width: 45%;
    background: #2d5f3f;
    display: flex;
    align-items: center;
    padding: 4rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 2;
}

.hero-content-left {
    max-width: 500px;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #e8f5e9;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f0f4f0;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.hero-image-right {
    width: 55%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #e8f5e9;
}

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

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

.intro-narrow {
    flex: 1;
    max-width: 600px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 1;
    position: relative;
    margin-top: -3rem;
    background: #e8f5e9;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -20px 20px 0 #2d5f3f;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 8rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 1.5rem);
    background: #f8f9fa;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

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

.card-offset-4 {
    margin-top: 2rem;
}

.card-offset-5 {
    margin-top: -2rem;
}

.card-offset-6 {
    margin-top: 1rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2d5f3f;
    margin: 1.5rem 1.5rem 0.75rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d5f3f;
    padding: 0 1.5rem;
    margin-top: auto;
}

.select-service {
    margin: 1.5rem;
    padding: 0.875rem 1.75rem;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1e4029;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #4a7c59;
}

.form-section-offset {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #2d5f3f 0%, #1e4029 100%);
}

.form-container-irregular {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    transform: rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-intro {
    margin-bottom: 2.5rem;
    transform: rotate(1deg);
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

.contact-form {
    transform: rotate(1deg);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e6ed;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.selected-service-display {
    padding: 1.25rem;
    background: #e8f5e9;
    margin-bottom: 1.75rem;
    border-left: 4px solid #2d5f3f;
}

.selected-service-display p {
    color: #2d5f3f;
    font-size: 1.05rem;
}

.btn-submit {
    padding: 1.125rem 3rem;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.about-preview-offset {
    display: flex;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5rem;
    align-items: center;
}

.about-content-irregular {
    flex: 1;
    padding-left: 3rem;
}

.about-content-irregular h2 {
    font-size: 2.75rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.about-content-irregular p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-inline {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #2d5f3f;
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}

.link-inline:hover {
    color: #1e4029;
    border-bottom-color: #1e4029;
}

.about-image-irregular {
    flex: 1;
    position: relative;
    background: #e8f5e9;
}

.about-image-irregular img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(-2rem);
}

.footer {
    background: #1e4029;
    color: #e8f5e9;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #b2d8bb;
    margin-bottom: 0.5rem;
}

.email-text {
    font-style: normal;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d5f3f;
    text-align: center;
}

.footer-bottom p {
    color: #b2d8bb;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #8ba892;
    line-height: 1.6;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

.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 {
    flex: 1;
    color: #34495e;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #2d5f3f;
    color: #ffffff;
}

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

.btn-reject {
    background: #ecf0f1;
    color: #34495e;
}

.btn-reject:hover {
    background: #d5dbdb;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-container .service-info {
    background: #e8f5e9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2d5f3f;
}

.thanks-container .cta-primary {
    margin-top: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #2d5f3f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-content li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 1.75rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.about-hero {
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    color: #2d5f3f;
    margin-bottom: 1.25rem;
}

.about-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-page-header {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 2rem;
}

.services-page-header h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.services-page-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

    .hero-offset-block {
        width: 100%;
        clip-path: none;
    }

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

    .service-card {
        width: calc(50% - 1rem);
    }

    .intro-offset,
    .about-preview-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .services-header-offset {
        padding-left: 0;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container-irregular {
        transform: none;
        padding: 2rem;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 2rem;
    }
}