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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6f5c44;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content-offset {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.cta-primary:hover {
    background-color: #6f5c44;
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.4);
    transform: translateY(-2px);
}

.hero-image-overlap {
    width: 55%;
    height: 85vh;
    overflow: hidden;
}

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

.intro-story {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.split-offset {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
    padding-left: 3rem;
}

.split-text h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.split-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.insight-block {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 8rem 2rem;
    margin: 4rem 0;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.insight-block h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.insight-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 1.5rem;
}

.insight-block sup a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.insight-block sup a:hover {
    text-decoration: underline;
}

.services-cards {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    padding-left: 8%;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.card-elevated {
    transform: translateY(-20px);
}

.card-offset-top {
    transform: translateY(20px);
}

.card-offset-bottom {
    transform: translateY(40px);
}

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

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.testimonials-inline {
    padding: 8rem 2rem;
    background-color: #f9f7f5;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial {
    border-left: 4px solid #8b7355;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: normal;
    font-weight: 600;
}

.cta-overlap {
    background-color: #8b7355;
    padding: 6rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-overlap h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-overlap p {
    font-size: 1.25rem;
    color: #f5f1ed;
}

.form-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    background-color: #fafafa;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.3);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f0ede9;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

.references {
    list-style: decimal;
    padding-left: 1.25rem;
}

.references li {
    margin-bottom: 0.75rem;
}

.references li a {
    color: #8b7355;
    text-decoration: none;
    font-size: 0.9rem;
}

.references li a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 3rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        justify-content: center;
        padding: 6rem 2rem 4rem;
    }

    .hero-image-overlap {
        width: 100%;
        height: 400px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .split-offset {
        flex-direction: column;
    }

    .split-text {
        padding-left: 0;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }

    .card-elevated,
    .card-offset-top,
    .card-offset-bottom {
        transform: none;
    }

    .nav-floating {
        top: 0;
        left: 0;
        right: 0;
    }
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-offset {
        font-size: 2.25rem;
        padding-left: 0;
    }

    .service-card {
        width: 100%;
    }

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.thanks-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f9f7f5;
    font-size: 1.1rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.about-hero {
    padding: 8rem 2rem 6rem;
    background-color: #fafafa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.25rem;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-hero {
    padding: 8rem 2rem 6rem;
    background-color: #2c2c2c;
    text-align: center;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.25rem;
    color: #d4d4d4;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    padding: 6rem 2rem;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-item {
    padding: 2.5rem;
    background-color: #fafafa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-detail-item h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.25rem;
}

.service-detail-item .service-price {
    font-size: 2rem;
    color: #8b7355;
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background-color: #f9f7f5;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #5a5a5a;
}

.contact-info-section {
    padding: 6rem 2rem;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.legal-page {
    padding: 8rem 2rem 4rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}
