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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.ad-notice {
    background-color: #f0f0ed;
    color: #666;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #ddd;
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e0e0dc;
}

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

.logo-block a {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

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

.hero-content-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-text-offset {
    max-width: 580px;
    margin-left: 5%;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.92);
}

.hero-text-offset h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text-offset p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    opacity: 1;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
    background-color: #e8e8e4;
}

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

.intro-diagonal {
    padding: 6rem 2rem;
    background-color: #fff;
    position: relative;
}

.diagonal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.content-left {
    flex: 1.2;
    padding-right: 2rem;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-left p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.stats-overlay {
    flex: 0.8;
    background-color: #f8f8f6;
    padding: 2.5rem;
    margin-top: 3rem;
}

.stat-item {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Helvetica Neue', sans-serif;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.services-cards-irregular {
    padding: 5rem 2rem;
    background-color: #fafaf8;
}

.section-title-left {
    max-width: 1400px;
    margin: 0 auto 3rem 2rem;
    font-size: 2.6rem;
}

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

.service-card {
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.card-offset-2 {
    margin-top: 4rem;
}

.card-offset-3 {
    margin-top: 2rem;
}

.card-offset-4 {
    margin-top: 6rem;
}

.card-offset-5 {
    margin-top: 1rem;
}

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

.story-panel {
    padding: 6rem 2rem;
    background-color: #fff;
}

.panel-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.image-stack {
    flex: 1;
    background-color: #e8e8e4;
}

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

.form-section-split {
    padding: 6rem 2rem;
    background-color: #f8f8f6;
}

.form-section-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 5rem;
}

.form-intro-side {
    flex: 1;
    padding-right: 2rem;
}

.form-intro-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-intro-side p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a2a2a;
    font-weight: bold;
}

.form-container-offset {
    flex: 1;
    background-color: #fff;
    padding: 3rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #fafaf8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
}

.btn-submit {
    padding: 1.1rem 2rem;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.testimonials-overlap {
    padding: 6rem 2rem;
    background-color: #fff;
}

.centered-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f8f6;
    padding: 2.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', sans-serif;
}

.final-cta-diagonal {
    padding: 7rem 2rem;
    background-color: #2a2a2a;
    color: #fff;
    text-align: center;
}

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

.cta-content-wrap h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content-wrap p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fff;
    color: #2a2a2a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
    opacity: 1;
}

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

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-references {
    max-width: 1400px;
    margin: 3rem auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-references h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #9a9a9a;
}

.footer-references ol li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #252525;
    border-left: 3px solid #4a4a4a;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #fff;
    color: #2a2a2a;
}

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

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

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

@media (max-width: 1024px) {
    .hero-image-overlap {
        width: 50%;
    }

    .diagonal-wrapper {
        flex-direction: column;
    }

    .stats-overlay {
        margin-top: 2rem;
    }

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

    .panel-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .form-section-split {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-main {
        flex-wrap: wrap;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
    }

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

    .service-card {
        width: 100%;
    }

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

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

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-container .selected-service {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f8f6;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #1a1a1a;
    opacity: 1;
}

.page-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.page-container h1 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.page-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.page-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-container p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.page-container ul,
.page-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-container ul li,
.page-container ol li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-container a {
    color: #2a2a2a;
    text-decoration: underline;
}

.contact-info-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}
