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

.ad-disclosure {
    background: #f4f4f4;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 6%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

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

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

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 6%;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding-right: 40px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

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

.cta-primary:hover {
    background: #6f5636;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
    background: #e8e4df;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-offset {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background: #f9f7f4;
}

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

.intro-block-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-right {
    flex: 1.2;
    padding-top: 15px;
}

.intro-block-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.visual-break {
    display: flex;
    padding: 80px 6%;
    gap: 70px;
    background: #fff;
    align-items: center;
}

.image-stack-left {
    flex: 1;
    background: #e8e4df;
}

.image-stack-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    transform: translateX(-30px);
}

.text-stack-right {
    flex: 1;
    padding-left: 20px;
}

.text-stack-right h3 {
    font-size: 36px;
    margin-bottom: 22px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.text-stack-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.services-asymmetric {
    padding: 100px 6%;
    background: #fafafa;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
}

.services-header-offset h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    flex: 1 1 calc(55% - 15px);
    margin-top: 0;
}

.card-offset-2 {
    flex: 1 1 calc(45% - 15px);
    margin-top: 40px;
}

.card-offset-3 {
    flex: 1 1 calc(40% - 15px);
    margin-top: -20px;
}

.card-offset-4 {
    flex: 1 1 calc(60% - 15px);
    margin-top: 30px;
}

.card-offset-5 {
    flex: 1 1 calc(50% - 15px);
    margin-top: -10px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8e4df;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #6f5636;
}

.cta-inline {
    padding: 90px 6%;
    background: #1a1a1a;
    color: #fff;
}

.cta-content-diagonal {
    max-width: 700px;
    transform: translateX(80px);
}

.cta-content-diagonal h2 {
    font-size: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-content-diagonal p {
    font-size: 19px;
    color: #d0d0d0;
}

.form-section {
    padding: 100px 6%;
    background: #f9f7f4;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 100px;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

.selected-service-display {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #8b6f47;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.main-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 6% 30px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.disclaimer-text {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px 6%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: #8b6f47;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #6f5636;
}

.cookie-btn.reject {
    background: #555;
    color: #fff;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
    background: #f9f7f4;
}

.thanks-content {
    max-width: 650px;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-details {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #8b6f47;
}

.thanks-details p {
    margin-bottom: 10px;
    text-align: left;
}

.btn-home {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 38px;
    background: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #6f5636;
}

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 6%;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-content {
    padding: 80px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 6%;
    background: #f9f7f4;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
}

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

.contact-block p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

.services-list-page h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    background: #e8e4df;
}

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

.service-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-item .price-tag {
    margin: 0;
}

.about-intro {
    padding: 80px 6%;
    background: #f9f7f4;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.about-image-section {
    padding: 60px 6%;
    background: #fff;
}

.about-image-section img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e8e4df;
}

.about-values {
    padding: 80px 6%;
    background: #fafafa;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
        padding: 60px 5%;
    }

    .visual-break {
        flex-direction: column;
        gap: 40px;
        padding: 60px 5%;
    }

    .image-stack-left img {
        transform: translateX(0);
    }

    .services-grid-irregular {
        flex-direction: column;
    }

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

    .cta-content-diagonal {
        transform: translateX(0);
    }

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

    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-item {
        flex-direction: column;
        padding: 30px;
    }

    .service-item img {
        width: 100%;
    }

    .values-grid {
        flex-direction: column;
    }
}