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

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e1e8ed;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a4f;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #636e72;
    background: #f0f3f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f3ed 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 4rem 2rem 4rem 8rem;
}

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

.hero-content-offset p {
    font-size: 1.25rem;
    color: #4a5a54;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    background: #2d7a4f;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 70%;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: #c8d6cf;
}

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

.intro-shifted {
    display: flex;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    gap: 6rem;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    padding-left: 4rem;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    color: #1e3a2f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #4a5a54;
    margin-bottom: 1.5rem;
}

.intro-visual-right {
    flex: 1;
    position: relative;
    transform: translateY(-3rem);
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #d4e0d9;
}

.visual-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

.services-irregular {
    background: #f8faf9;
    padding: 6rem 2rem;
}

.services-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 4rem;
    transform: skewY(-1deg);
    padding: 2rem 0 2rem 3rem;
}

.services-header-diagonal h2 {
    font-size: 2.8rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

.services-header-diagonal p {
    font-size: 1.2rem;
    color: #4a5a54;
}

.service-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.offset-1 {
    transform: rotate(-1deg);
}

.service-card.offset-2 {
    transform: rotate(1.5deg) translateY(1rem);
}

.service-card.offset-3 {
    transform: rotate(-0.5deg);
}

.service-card.offset-4 {
    transform: rotate(1deg) translateY(-1rem);
}

.service-card.offset-5 {
    transform: rotate(-1.5deg);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #d4e0d9;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    color: #1e3a2f;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5a54;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-price {
    padding: 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 1.5rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2d7a4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #24623f;
    transform: scale(1.02);
}

.select-service.selected {
    background: #1e4d33;
}

.philosophy-overlap {
    position: relative;
    max-width: 1400px;
    margin: 10rem auto 8rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.philosophy-image-base {
    flex: 1;
    position: relative;
}

.philosophy-image-base img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #d4e0d9;
}

.philosophy-text-float {
    flex: 1;
    background: white;
    padding: 3rem;
    margin-left: -4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.philosophy-text-float h2 {
    font-size: 2.2rem;
    color: #1e3a2f;
    margin-bottom: 1.5rem;
}

.philosophy-text-float p {
    color: #4a5a54;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

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

.link-inline:hover {
    color: #24623f;
}

.contact-form-section {
    background: linear-gradient(135deg, #e8f3ed 0%, #f8faf9 100%);
    padding: 6rem 2rem;
}

.form-container-diagonal {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

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

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

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffd96a;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #856404;
}

.form-notice.success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #2d7a4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

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

.main-footer {
    background: #1e3a2f;
    color: #c8d6cf;
    padding: 4rem 2rem 2rem;
}

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

.footer-block h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-block p {
    line-height: 1.8;
}

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

.footer-block ul li {
    margin-bottom: 0.8rem;
}

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

.footer-block ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d5043;
    font-size: 0.85rem;
    color: #9ba8a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #74b9ff;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background: #24623f;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #636e72;
    color: white;
}

.cookie-btn.reject:hover {
    background: #4a5456;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        padding: 3rem 2rem;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
        right: 0;
        top: 0;
        transform: none;
    }

    .intro-shifted {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-block-left {
        padding-left: 0;
    }

    .intro-visual-right {
        transform: none;
    }

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

    .philosophy-overlap {
        flex-direction: column;
    }

    .philosophy-text-float {
        margin-left: 0;
        margin-top: -2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 1rem;
    }

    .ad-notice {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .service-card {
        width: 100%;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        transform: none;
    }
}

.page-header {
    background: linear-gradient(135deg, #e8f3ed 0%, #f8faf9 100%);
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #4a5a54;
}

.content-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #1e3a2f;
    margin: 3rem 0 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #2d7a4f;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: #4a5a54;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.content-section ul li {
    color: #4a5a54;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.contact-info h3 {
    color: #1e3a2f;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info strong {
    color: #2d7a4f;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #2d7a4f;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1e3a2f;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a5a54;
    margin-bottom: 1rem;
}

.thanks-service {
    background: #e8f3ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service strong {
    color: #2d7a4f;
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #2d7a4f;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #2d7a4f;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.back-link:hover {
    background: #2d7a4f;
    color: white;
    transform: translateY(-2px);
}