* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #c89f6f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    padding: 24px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-block {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

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

.hero-asymmetric {
    background-color: var(--bg-light);
    padding: 80px 40px 60px;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.hero-image-block {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
}

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

.intro-offset {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 120px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-staggered {
    padding: 80px 40px 100px;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 80px;
}

.section-title-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.service-card-offset {
    background-color: var(--bg-white);
    width: calc(50% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-offset:hover {
    transform: translateY(-4px);
}

.service-card-1 {
    margin-left: 40px;
}

.service-card-2 {
    margin-right: 60px;
    margin-top: 30px;
}

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

.service-card-4 {
    margin-right: 40px;
    margin-top: 20px;
}

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

.service-card-6 {
    margin-right: 20px;
    margin-top: 30px;
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-cta {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #6f5d46;
    transform: translateX(4px);
}

.trust-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6e4e 100%);
    color: white;
    position: relative;
}

.trust-content-offset {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.trust-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.trust-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0 0 340px;
    margin-top: 40px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.form-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-offset {
    flex: 1;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 24px;
}

.footer-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h4,
.footer-block h5 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-block p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-block a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.page-hero-offset {
    padding: 100px 40px 60px;
    background-color: var(--bg-light);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto 0 80px;
}

.page-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-story-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.story-layout-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text-primary {
    flex: 1;
    padding-right: 20px;
}

.story-text-primary h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.story-text-primary p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image-offset {
    flex: 0 0 480px;
    background-color: var(--border-color);
}

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

.values-section-staggered {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.section-title-centered {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
}

.value-item:nth-child(odd) {
    margin-top: 20px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-approach-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.team-content-offset {
    max-width: 800px;
    margin: 0 auto 0 140px;
}

.team-content-offset h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-content-offset p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.experience-section-diagonal {
    padding: 100px 40px;
    background-color: var(--secondary-color);
    color: white;
}

.experience-content {
    max-width: 800px;
    margin: 0 100px 0 auto;
}

.experience-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-section-offset {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.cta-button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.services-detailed-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.service-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-asymmetric:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.service-detail-asymmetric:nth-child(odd) {
    margin-right: 80px;
}

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-detail-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-features ul {
    margin-bottom: 28px;
}

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-pricing-block {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.service-detail-cta {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-detail-cta:hover {
    background-color: #234a30;
    transform: translateX(4px);
}

.service-detail-image {
    flex: 0 0 500px;
    background-color: var(--border-color);
}

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

.services-cta-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #6f5d46;
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

.contact-details-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.email-text {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-location-block {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-location-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.location-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.additional-content-offset {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.additional-content-offset h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.additional-content-offset p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.preparation-list {
    margin-left: 20px;
}

.preparation-list li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-alternatives {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.alternatives-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alternatives-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.alternatives-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

.thanks-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-steps {
    margin-left: 20px;
}

.thanks-steps li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-contact-info {
    margin-bottom: 40px;
}

.thanks-contact-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-primary:hover {
    background-color: #234a30;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

.legal-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    color: #234a30;
}

@media (max-width: 1024px) {
    .hero-offset-container {
        flex-direction: column;
    }

    .hero-text-block {
        padding-right: 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .story-layout-asymmetric,
    .service-detail-asymmetric,
    .contact-layout-asymmetric,
    .form-container-asymmetric {
        flex-direction: column;
    }

    .service-detail-asymmetric:nth-child(even) {
        flex-direction: column;
    }

    .service-card-offset {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .intro-narrow,
    .team-content-offset,
    .additional-content-offset {
        margin-left: 0;
    }

    .experience-content {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-offset {
        align-items: flex-start;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .hero-asymmetric {
        padding: 60px 24px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-title {
        font-size: 36px;
    }

    .section-title-large,
    .section-title-centered {
        font-size: 32px;
    }

    .trust-content-offset {
        margin-left: 0;
    }

    .trust-stats {
        gap: 32px;
    }

    .form-intro-block {
        flex: 1;
    }

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

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