:root {
    --primary-color: #2d5a3d;
    --secondary-color: #7a9d6f;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    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: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 30px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 80px 80px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    margin-left: 40px;
}

.hero-image-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a2f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #668d5d;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    background-color: var(--bg-white);
    position: relative;
}

.intro-text-block {
    flex: 1.2;
    max-width: 620px;
}

.intro-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.intro-image-overlap {
    flex: 1;
    position: relative;
    top: -50px;
}

.intro-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.services-preview {
    padding: 120px 80px;
    background: var(--bg-light);
}

.services-header-offset {
    max-width: 680px;
    margin-bottom: 60px;
    margin-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-header-offset p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-large {
    flex: 1 1 calc(50% - 15px);
}

.card-medium {
    flex: 1 1 calc(45% - 15px);
}

.card-small {
    flex: 1 1 calc(30% - 15px);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 24px 16px;
}

.select-service {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    margin: 0 24px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
}

.cta-inline a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.why-seasonal-offset {
    display: flex;
    gap: 60px;
    padding: 100px 80px;
    background-color: var(--bg-white);
    align-items: center;
}

.why-image-left {
    flex: 1;
    order: 1;
}

.why-image-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-content-right {
    flex: 1;
    order: 2;
    padding-left: 40px;
}

.why-content-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.why-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.why-content-right .cta-secondary {
    margin-top: 16px;
}

.form-section-irregular {
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
}

.form-container-offset {
    max-width: 640px;
    margin-left: 120px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-container-offset h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-container-offset p {
    margin-bottom: 32px;
    color: #555;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a2f;
}

.footer-asymmetric {
    background-color: #2a2a2a;
    color: var(--text-light);
    padding: 80px 80px 40px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 12px;
}

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

.footer-block a:hover {
    color: var(--accent-color);
}

.email-display {
    color: #ccc;
    font-size: 14px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #555;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-cookie-accept:hover {
    background-color: #234a2f;
}

.btn-cookie-reject {
    background-color: #888;
    color: var(--text-light);
}

.btn-cookie-reject:hover {
    background-color: #666;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 140px 80px 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.page-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    max-width: 700px;
}

.about-story-offset {
    display: flex;
    gap: 60px;
    padding: 100px 80px;
    background-color: var(--bg-white);
    align-items: center;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-block-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.story-image-right {
    flex: 1;
}

.story-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.values-asymmetric {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
}

.value-offset-1 {
    margin-top: 0;
}

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: -20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-section-irregular {
    display: flex;
    gap: 60px;
    padding: 100px 80px;
    background-color: var(--bg-white);
    align-items: center;
}

.team-image-left {
    flex: 1;
    order: 1;
}

.team-image-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-content-right {
    flex: 1;
    order: 2;
    padding-left: 40px;
}

.team-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.process-asymmetric {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.process-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.process-steps-offset {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: var(--bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-left {
    margin-right: 100px;
}

.step-right {
    margin-left: 100px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-about-offset {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-layout-full {
    flex-direction: column;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.service-price-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: block;
    text-align: center;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.service-detail-content-center {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-content-center h2 {
    font-size: 42px;
}

.service-detail-content-center p {
    font-size: 18px;
}

.programme-benefits-grid {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    flex: 1;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    color: #555;
}

.form-section-services {
    padding: 100px 80px;
    background: var(--bg-light);
}

.contact-info-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    background-color: var(--bg-white);
}

.contact-details-left {
    flex: 1;
}

.contact-details-left h2 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--primary-color);
}

.contact-details-left h2:first-child {
    margin-top: 0;
}

.contact-details-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
    font-size: 15px;
    color: #666;
}

.contact-map-right {
    flex: 1;
}

.map-placeholder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-additional {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.contact-additional h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.expectations-grid {
    display: flex;
    gap: 30px;
}

.expectation-item {
    flex: 1;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expectation-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 140px 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.thanks-confirmation {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.thanks-service-info h2 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.next-steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .why-seasonal-offset,
    .about-story-offset,
    .team-section-irregular,
    .contact-info-asymmetric,
    .service-detail {
        flex-direction: column;
        padding: 60px 40px;
    }

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

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

    .services-grid-irregular,
    .values-grid-irregular,
    .programme-benefits-grid,
    .expectations-grid,
    .next-steps-grid {
        flex-direction: column;
    }

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

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

    .footer-main {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 36px;
    }

    .page-hero-content h1 {
        font-size: 38px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
    }
}