* {
    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;
}

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 60px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #2d7a4f;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px 80px 80px;
}

.hero-content-offset {
    max-width: 520px;
    z-index: 10;
    position: relative;
    margin-right: auto;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2d7a4f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #245d3d;
}

.hero-image-overlap {
    position: absolute;
    right: -120px;
    top: 15%;
    width: 55%;
    background: #e8f5e9;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.intro-offset {
    padding: 120px 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.intro-narrow h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 1;
    background: #f0f9f4;
    padding: 40px;
    margin-top: -60px;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 80px 140px;
    background: #fafafa;
}

.section-title-left {
    max-width: 560px;
    margin-bottom: 80px;
}

.section-title-left h2 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-title-left p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 120px;
}

.service-card.offset-3 {
    margin-left: 60px;
}

.service-card.offset-4 {
    margin-left: 180px;
}

.service-card.offset-5 {
    margin-left: 30px;
}

.service-image {
    flex-shrink: 0;
    width: 280px;
    background: #e8f5e9;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    color: #2d7a4f;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    background: #2d7a4f;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #245d3d;
}

.form-section-diagonal {
    padding: 140px 80px;
    background: linear-gradient(135deg, #2d7a4f 0%, #1e5438 100%);
    position: relative;
    overflow: hidden;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.form-container h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #2d7a4f;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #245d3d;
}

.trust-block {
    padding: 100px 80px;
    background: #f0f9f4;
}

.trust-content {
    max-width: 640px;
    margin-left: 180px;
}

.trust-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

.link-inline {
    color: #2d7a4f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d7a4f;
    transition: opacity 0.3s;
}

.link-inline:hover {
    opacity: 0.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d7a4f;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 24px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #245d3d;
}

.btn-reject {
    background: #e5e7eb;
    color: #4a5568;
}

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

.cookie-link {
    color: #2d7a4f;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.about-hero {
    padding: 140px 80px 80px;
    background: #f0f9f4;
}

.about-hero-content {
    max-width: 720px;
}

.about-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
}

.about-story {
    padding: 100px 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-block-left {
    flex: 1;
    max-width: 540px;
}

.story-block-left h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.story-block-left p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-right {
    flex: 1;
    background: #e8f5e9;
    padding: 30px;
}

.story-image-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.values-section {
    padding: 100px 80px;
    background: #fafafa;
}

.values-section h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    color: #2d7a4f;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.team-approach {
    padding: 100px 80px;
}

.approach-content {
    max-width: 680px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-page-header {
    padding: 140px 80px 60px;
    text-align: center;
    background: #f0f9f4;
}

.services-page-header h1 {
    font-size: 50px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 1;
    background: #e8f5e9;
    padding: 20px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price-large {
    font-size: 36px;
    color: #2d7a4f;
    font-weight: 700;
    margin: 28px 0 20px;
}

.services-cta {
    padding: 80px 80px;
    background: #f0f9f4;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-header {
    padding: 140px 80px 60px;
    background: #f0f9f4;
}

.contact-header h1 {
    font-size: 50px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 640px;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 20px;
    color: #2d7a4f;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background: #e8f5e9;
    padding: 20px;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.contact-additional {
    padding: 60px 80px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-additional p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-page h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d7a4f;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-image {
        width: 100%;
    }

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

    .about-story {
        flex-direction: column;
        padding: 60px 40px;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        padding: 0 40px;
    }

    .contact-details {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }
}