* {
    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: #2c3e50;
    background: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a472a;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.hero-content-offset {
    position: relative;
    z-index: 2;
    padding: 120px 60px 60px 10%;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a472a;
}

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #2d5f3f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a472a;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -40px 40px 80px rgba(0, 0, 0, 0.15);
    background-color: #d4e3d9;
}

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

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 140px 10% 100px 15%;
    align-items: center;
    background: #f8faf9;
}

.intro-text-block {
    flex: 1;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a472a;
}

.intro-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
}

.intro-visual {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #c8d6cc;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-irregular {
    padding: 120px 8%;
    background: white;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 80px;
    padding-left: 5%;
    color: #1a472a;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 27px);
}

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

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

.service-card-2 {
    margin-top: 60px;
}

.service-card-3 {
    margin-top: 20px;
}

.service-card-4 {
    margin-top: 80px;
}

.service-card-5 {
    margin-top: 40px;
}

.service-card-6 {
    margin-top: 100px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #1a472a;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    padding: 0 25px;
    margin-bottom: 20px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2d5f3f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a472a;
}

.form-section-offset {
    padding: 100px 5% 100px 20%;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.form-container-asymmetric {
    max-width: 600px;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a472a;
}

.form-container-asymmetric > p {
    margin-bottom: 35px;
    color: #5a6c7d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e6e4;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2d5f3f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a472a;
}

.trust-block-overlap {
    position: relative;
    padding: 120px 10% 120px 25%;
    background: #1a472a;
    margin-top: -80px;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
}

.trust-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}

.testimonials-asymmetric {
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.1rem;
    color: #e8f5e9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    color: #a8c9b4;
    font-style: italic;
}

.footer-asymmetric {
    background: #0d2818;
    color: white;
    padding: 80px 10% 40px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #a8c9b4;
}

.footer-col a {
    display: block;
    color: #d4e3d9;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #a8c9b4;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    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: 30px;
}

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

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

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

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

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

.btn-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

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

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

    .service-card {
        width: calc(50% - 20px);
    }

    .testimonials-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 12px 20px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 5%;
    }

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

    .form-section-offset {
        padding: 60px 5%;
    }

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

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

.page-header {
    padding: 160px 10% 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a472a;
}

.about-story {
    padding: 100px 10%;
    background: white;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a472a;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #c8d6cc;
}

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

.approach-section {
    padding: 100px 10%;
    background: #f8faf9;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a472a;
}

.approach-grid {
    display: flex;
    gap: 50px;
}

.approach-item {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a472a;
}

.approach-item p {
    line-height: 1.7;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 15%;
    background: white;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a472a;
}

.values-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.services-detail {
    padding: 80px 10%;
    background: white;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a472a;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #c8d6cc;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-top: 25px;
}

.contact-section {
    padding: 80px 10%;
    background: white;
}

.contact-content {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1.5;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d5f3f;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #2d5f3f;
    line-height: 1.8;
}

.thanks-section {
    padding: 200px 10%;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a472a;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.service-confirmation {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #2d5f3f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #1a472a;
}

.legal-content {
    padding: 80px 10%;
    background: white;
    min-height: 50vh;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a472a;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-text em {
    display: block;
    margin-top: 50px;
    color: #7f8c8d;
}

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

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-text h2,
    .approach-section h2,
    .values-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}