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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 15px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 60px 5%;
    position: relative;
}

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

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #4a4a4a;
}

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

.cta-hero:hover {
    background-color: #6d3410;
}

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background-color: #fff;
}

.intro-block-offset {
    flex: 1;
    margin-top: -80px;
}

.intro-block-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-block-offset p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-overlap {
    flex: 1;
    position: relative;
    margin-bottom: -60px;
    background-color: #f5e6d3;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.services-irregular {
    padding: 120px 5% 80px;
    background-color: #fafafa;
}

.services-header-offset {
    max-width: 600px;
    margin-left: 8%;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    flex-basis: calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    margin-top: 0;
}

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

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

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

.card-offset-5 {
    margin-top: 50px;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-overlap {
    display: flex;
    padding: 100px 5%;
    gap: 50px;
    align-items: center;
    background-color: #2c2c2c;
    color: #fff;
    position: relative;
}

.testimonial-content {
    flex: 1;
    padding-left: 5%;
}

.testimonial-content blockquote {
    border-left: 4px solid #8b4513;
    padding-left: 30px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #ccc;
}

.testimonial-image {
    flex: 1;
    margin-top: -80px;
    background-color: #3a3a3a;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.philosophy-split {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: center;
    background-color: #fff;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.cta-text {
    display: inline-block;
    margin-top: 15px;
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.cta-text:hover {
    color: #6d3410;
    border-bottom-color: #6d3410;
}

.philosophy-visual {
    flex: 1;
    background-color: #f5e6d3;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.cta-floating {
    padding: 80px 5%;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(135deg, #8b4513 0%, #6d3410 100%);
    color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.3);
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #fff;
    color: #8b4513;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 5%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b4513;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.disclaimer-footer {
    background-color: #111;
    color: #888;
    padding: 30px 5%;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #6d3410;
}

.cookie-reject {
    background-color: #ddd;
    color: #333;
}

.cookie-reject:hover {
    background-color: #ccc;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-image-right {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .intro-block-offset {
        margin-top: 0;
    }

    .intro-image-overlap {
        margin-bottom: 0;
    }

    .service-card {
        flex-basis: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        margin-top: 0;
    }

    .testimonial-overlap {
        flex-direction: column;
        padding: 60px 5%;
    }

    .testimonial-image {
        margin-top: 30px;
    }

    .philosophy-split {
        flex-direction: column;
        padding: 60px 5%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.page-header {
    background: linear-gradient(135deg, #8b4513 0%, #6d3410 100%);
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.page-content {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

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

.page-content ul li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin-bottom: 10px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    flex-basis: calc(50% - 15px);
}

.service-item h3 {
    margin-top: 0;
    color: #8b4513;
}

.service-item .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-item {
        flex-basis: 100%;
    }
}

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

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

.thanks-box h1 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-box .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-box .back-link:hover {
    background-color: #6d3410;
}