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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6849;
}

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

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-disclosure {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

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

.nav-links a:hover {
    color: #8B7355;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
}

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

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 80px 40px 80px 80px;
    background: rgba(254, 254, 254, 0.98);
    margin-left: 5%;
}

.hero-text-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.hero-text-offset p {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8B7355;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #6d5a42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content {
    flex: 1;
    max-width: 520px;
}

.intro-content h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.intro-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards {
    padding: 80px 40px;
    background: #f9f9f9;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 50px;
    padding-left: 40px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    padding: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    padding: 0 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #8B7355;
    padding: 12px 24px;
}

.cta-card {
    width: 100%;
    padding: 14px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-card:hover {
    background: #1a1a1a;
}

.trust-block {
    padding: 120px 80px;
    background: #fff;
}

.trust-content-offset {
    max-width: 640px;
    margin-left: auto;
    margin-right: 15%;
}

.trust-content-offset h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.trust-content-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.trust-list {
    list-style: none;
    margin-bottom: 36px;
}

.trust-list li {
    font-size: 16px;
    color: #2c2c2c;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

.process-visual {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.process-image {
    flex: 1;
    overflow: hidden;
}

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

.process-steps {
    flex: 1;
    padding: 80px 60px;
    background: #f5f5f5;
}

.process-steps h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8B7355;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-top: 8px;
}

.form-section {
    padding: 100px 40px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8B7355;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #6d5a42;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.footer-asymmetric {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-block p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.thanks-box .service-selected {
    font-weight: 600;
    color: #8B7355;
}

.thanks-box a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #8B7355;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-box a:hover {
    background: #6d5a42;
}

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

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.legal-page .updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-hero {
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
}

@media (max-width: 768px) {
    .hero-visual {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-top: 300px;
        padding: 40px 20px;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .process-visual {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        padding: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
    }

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

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