* {
    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-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.active {
    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-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.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-color: #8b6f47;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #725a38;
}

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block {
    margin-right: auto;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
    white-space: nowrap;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 60px;
    background-color: rgba(255,255,255,0.95);
    padding: 60px 50px;
    border-left: 6px solid #8b6f47;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: #725a38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,111,71,0.3);
}

.hero-visual-overlap {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    background-color: #e8e4df;
}

.hero-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

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

.intro-narrow {
    flex: 1.5;
}

.intro-statement {
    font-size: 21px;
    line-height: 1.8;
    color: #3a3a3a;
}

.intro-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric-card {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #8b6f47;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.metric-number {
    font-size: 42px;
    font-weight: 800;
    color: #8b6f47;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 15px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-irregular {
    background-color: #f5f3f0;
    padding: 100px 40px;
}

.services-header-offset {
    max-width: 650px;
    margin: 0 0 70px 120px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 800;
}

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

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

.service-card-large,
.service-card-offset,
.service-card-compact,
.service-card-wide,
.service-card-elevated {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card-large:hover,
.service-card-offset:hover,
.service-card-compact:hover,
.service-card-wide:hover,
.service-card-elevated:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card-large {
    flex: 1 1 calc(60% - 20px);
    min-width: 500px;
}

.service-card-offset {
    flex: 1 1 calc(40% - 20px);
    min-width: 380px;
    margin-top: 60px;
}

.service-card-compact {
    flex: 1 1 calc(35% - 20px);
    min-width: 350px;
}

.service-card-wide {
    flex: 1 1 calc(65% - 20px);
    min-width: 500px;
    margin-top: -40px;
}

.service-card-elevated {
    flex: 1 1 calc(45% - 20px);
    min-width: 400px;
}

.service-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8e4df;
}

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    color: #8b6f47;
    font-weight: 700;
    margin-top: 12px;
}

.btn-service-select {
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-service-select:hover {
    background-color: #8b6f47;
}

.form-section-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.form-container {
    flex: 1.2;
}

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

.form-header h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 800;
}

.form-header p {
    font-size: 17px;
    color: #555;
}

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

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

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #725a38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,111,71,0.3);
}

.form-visual-offset {
    flex: 0.8;
    height: 500px;
    background-color: #e8e4df;
}

.form-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 90px 40px;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 800;
}

.trust-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #d0d0d0;
}

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

.trust-item {
    flex: 1;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #c0c0c0;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 70px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col-main {
    flex: 1.5;
}

.footer-col-main h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col-main p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-col,
.footer-col-contact {
    flex: 1;
}

.footer-col h4,
.footer-col-contact h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #8b6f47;
}

.footer-col-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #d0d0d0;
}

.disclaimer-footer {
    margin-top: 30px;
    font-size: 12px;
    line-height: 1.7;
    color: #999;
    font-style: italic;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #8b6f47;
}

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

.legal-page h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.legal-page h3 {
    font-size: 20px;
    color: #3a3a3a;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 30px;
}

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

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

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

.contact-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 800;
}

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

.contact-info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.about-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-header p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    height: 400px;
    background-color: #e8e4df;
}

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

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

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

.services-page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-page-header p {
    font-size: 19px;
    color: #555;
}

.service-detail {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-detail h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail .price-display {
    font-size: 32px;
    color: #8b6f47;
    font-weight: 700;
    margin-top: 24px;
}

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

    .nav-offset {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

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

    .intro-split,
    .form-section-diagonal,
    .trust-points,
    .footer-columns,
    .contact-info-grid,
    .about-content {
        flex-direction: column;
    }

    .services-grid-asymmetric > * {
        min-width: 100%;
    }
}