* {
    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-color: #fafafa;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-offset a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #2d6a4f;
}

.ad-label {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    color: #666;
    margin-right: 1rem;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 75vh;
    padding: 4rem 5%;
    background-color: #f8f9fa;
    position: relative;
}

.hero-content-left {
    flex: 0 0 45%;
    padding-right: 3rem;
    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.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -5%;
    margin-top: -3rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background-color: #e8f5e9;
    object-fit: cover;
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2d6a4f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2d6a4f;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
}

.intro-block {
    flex: 0 0 55%;
}

.intro-block h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.intro-visual {
    flex: 1;
    margin-top: 3rem;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #e8f5e9;
    object-fit: cover;
}

.services-asymmetric {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d6a4f;
    margin: 1rem 0;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

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

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

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

.values-offset {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.values-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: 10%;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #52b788;
}

.footer-disclaimer {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    flex: 1;
}

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

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

.btn-accept {
    background-color: #52b788;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #40916c;
}

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

.btn-reject:hover {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.page-hero-offset {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.page-hero-content {
    max-width: 700px;
    margin-left: 10%;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.about-intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
}

.about-text-block {
    flex: 0 0 50%;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.about-image-offset {
    flex: 1;
    margin-top: -4rem;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background-color: #e8f5e9;
    object-fit: cover;
}

.expertise-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.expertise-item h3 {
    font-size: 1.4rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.expertise-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-values-offset {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.team-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: 8%;
}

.team-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.approach-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.services-detail {
    padding: 4rem 5%;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-detail-item.offset-left {
    margin-left: 5%;
}

.service-detail-item.offset-right {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #e8f5e9;
    object-fit: cover;
}

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d6a4f;
    margin: 1.5rem 0;
}

.cta-section-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-layout-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
}

.contact-info-block {
    flex: 0 0 45%;
}

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

.info-group {
    margin-bottom: 2rem;
}

.info-group h3 {
    font-size: 1.2rem;
    color: #2d6a4f;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.info-group p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    margin-top: -3rem;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background-color: #e8f5e9;
    object-fit: cover;
}

.map-section {
    padding: 3rem 5% 6rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c7e9c0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-section {
    padding: 8rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-confirmation {
    font-weight: 600;
    color: #2d6a4f;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.legal-page {
    padding: 4rem 5%;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2d6a4f;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #2d6a4f;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.legal-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

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

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-image-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .intro-offset,
    .about-intro-asymmetric,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .service-detail-item {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}