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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5f3e;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 3px;
}

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

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

.nav-links a:hover {
    color: #1a5f3e;
}

.hero-offset {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 8%;
    margin-right: auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a5f3e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-offset {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary:hover {
    background: #145230;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 95, 62, 0.2);
}

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

.intro-block-left {
    flex: 1.2;
    padding-left: 3rem;
}

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

.intro-block-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-image-right {
    flex: 1;
    background: #e8f1ed;
    padding: 1rem;
}

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

.services-staggered {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 2.8rem;
    color: #1a5f3e;
    margin-bottom: 4rem;
    margin-left: 15%;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.card-offset-1 {
    margin-left: 5%;
    margin-right: 10%;
}

.card-offset-2 {
    margin-left: 12%;
    margin-right: 8%;
}

.card-offset-3 {
    margin-left: 8%;
    margin-right: 15%;
}

.card-offset-4 {
    margin-left: 18%;
    margin-right: 5%;
}

.card-offset-5 {
    margin-left: 6%;
    margin-right: 12%;
}

.card-offset-6 {
    margin-left: 14%;
    margin-right: 7%;
}

.card-image-wrapper {
    flex: 1;
    background: #e8f1ed;
}

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

.card-content {
    flex: 1;
    padding: 2.5rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #1a5f3e;
    margin-bottom: 1rem;
}

.card-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a5f3e;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background: #1a5f3e;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section-offset {
    padding: 5rem 2rem;
    background: #f5f8f6;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 20%;
    background: white;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a5f3e;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a5f3e;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f5f8f6;
    border-left: 4px solid #1a5f3e;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

.footer-asymmetric {
    background: #1a2f23;
    color: #e8f1ed;
    padding: 4rem 2rem 1.5rem;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #a5d6bd;
}

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

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

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

.footer-block a:hover {
    color: #a5d6bd;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 241, 237, 0.1);
    text-align: center;
    color: #b8c9c0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 47, 35, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    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;
    margin: 0;
}

.cookie-content a {
    color: #a5d6bd;
}

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #1a5f3e;
    color: white;
}

.btn-cookie:hover {
    background: #145230;
}

.btn-cookie-secondary {
    background: transparent;
    border: 2px solid #e8f1ed;
}

.btn-cookie-secondary:hover {
    background: rgba(232, 241, 237, 0.1);
}

.about-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8f1ed 0%, #f5f8f6 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #1a5f3e;
}

.about-story {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 2.3rem;
    color: #1a5f3e;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background: #e8f1ed;
    padding: 1rem;
}

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

.team-grid {
    padding: 5rem 2rem;
    background: #f5f8f6;
}

.team-grid h2 {
    font-size: 2.5rem;
    color: #1a5f3e;
    text-align: center;
    margin-bottom: 3rem;
}

.team-members {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.team-card h3 {
    font-size: 1.5rem;
    color: #1a5f3e;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-card p:not(.team-role) {
    color: #555;
    line-height: 1.7;
}

.values-offset {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

.values-block h2 {
    font-size: 2.5rem;
    color: #1a5f3e;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.15rem;
    color: #555;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f3e;
    font-weight: 700;
}

.services-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8f1ed 0%, #f5f8f6 100%);
}

.services-hero h1 {
    font-size: 3.5rem;
    color: #1a5f3e;
    margin-bottom: 1rem;
    text-align: center;
}

.services-intro {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

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

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

.service-detail-image {
    flex: 1;
    background: #e8f1ed;
    padding: 1rem;
}

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

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

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

.service-duration {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f3e;
    margin: 1.5rem 0;
}

.form-section-centered {
    padding: 5rem 2rem;
    background: white;
}

.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8f1ed 0%, #f5f8f6 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: #1a5f3e;
}

.contact-layout {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a5f3e;
    margin-bottom: 0.5rem;
}

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

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-image-block {
    flex: 1;
    background: #e8f1ed;
    padding: 1rem;
}

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

.faq-section {
    padding: 5rem 2rem;
    background: #f5f8f6;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a5f3e;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    margin-top: 80px;
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f1ed 0%, #f5f8f6 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a5f3e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.thanks-info {
    font-size: 0.95rem;
    color: #888;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a5f3e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #145230;
    transform: translateY(-2px);
}

#service-confirmation {
    font-weight: 600;
    color: #1a5f3e;
}

.legal-content {
    margin-top: 80px;
    padding: 5rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: #1a5f3e;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

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

.legal-content a {
    color: #1a5f3e;
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block {
        margin-left: 0;
        margin-bottom: 2rem;
    }

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

    .intro-asymmetric,
    .about-story,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .section-title-offset {
        margin-left: 0;
    }

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

    .form-container {
        margin-left: 0;
    }

    .values-offset {
        margin-left: 0;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

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

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

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