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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #1a3d1b;
    --accent-color: #4a8f4d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c62828;
}

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);
}

.ad-disclosure {
    background-color: #fef3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.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;
    max-width: 1400px;
    margin: 80px auto 120px;
    padding: 0 40px;
    gap: 60px;
}

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

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.intro-block-offset {
    flex: 1.3;
    padding-top: 60px;
}

.intro-block-offset h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.intro-block-offset p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image-float {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.services-grid-irregular {
    background-color: var(--bg-light);
    padding: 100px 40px;
    margin: 120px 0;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header-offset p {
    font-size: 20px;
    color: var(--text-light);
}

.services-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

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

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

.service-card.offset-center {
    margin-top: 20px;
}

.service-card.offset-bottom-right {
    margin-top: 40px;
    margin-left: 20px;
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-offset {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-asymmetric {
    background-color: var(--bg-light);
    padding: 60px 80px;
    border-radius: 8px;
    margin-left: 80px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.trust-block-floating {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-right: 80px;
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer-content {
    background-color: #fff3cd;
    padding: 40px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.email-display {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.8);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: var(--accent-color);
}

.btn-cookie.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-header-offset {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 40px 0 120px;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 22px;
    color: var(--text-light);
}

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

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

.story-block-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.story-content-right {
    flex: 1.2;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.values-offset {
    background-color: var(--bg-light);
    padding: 100px 40px;
    margin: 120px 0;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: center;
}

.values-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.values-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

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

.value-card.offset-1 {
    margin-top: -30px;
}

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

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

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-floating {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.expertise-text {
    flex: 1.3;
}

.expertise-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.approach-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-dark);
}

.approach-steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-block.step-offset-1 {
    margin-top: -20px;
}

.step-block.step-offset-2 {
    margin-top: 20px;
}

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

.step-block.step-offset-4 {
    margin-top: 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-content-center {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-content-center .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-content-center .cta-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.service-detail-block.offset-layout-1 {
    margin-left: -40px;
}

.service-detail-block.offset-layout-2 {
    margin-right: -40px;
}

.service-detail-block.offset-layout-3 {
    margin-left: 40px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.contact-cta-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.cta-box-floating {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin-left: 80px;
}

.cta-box-floating h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.contact-layout-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
}

.contact-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.detail-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.contact-info-additional {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 80px;
    margin-left: 60px;
}

.contact-info-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.location-info {
    margin-bottom: 60px;
}

.location-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.location-details {
    display: flex;
    gap: 60px;
}

.location-method {
    flex: 1;
}

.location-method h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-method p {
    color: var(--text-light);
    line-height: 1.7;
}

.availability-note {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.note-content {
    background-color: #e8f5e9;
    padding: 40px;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.note-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.note-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.service-selected {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    margin-top: 25px;
}

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

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-offset,
    .intro-asymmetric,
    .about-story-asymmetric,
    .expertise-content,
    .service-detail-block,
    .contact-info-block,
    .location-details {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .services-container-asymmetric {
        flex-direction: column;
    }

    .service-card {
        margin: 0 !important;
    }

    .trust-stats {
        flex-direction: column;
    }

    .values-grid-irregular,
    .approach-steps-asymmetric {
        flex-direction: column;
    }

    .value-card,
    .step-block {
        margin: 0 !important;
    }

    .cookie-content {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 40px 30px;
    }

    .section-header-offset,
    .page-header-offset {
        padding-left: 40px;
    }
}