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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #faf8f5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3d3d3d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons button {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

#cookie-accept {
    background-color: #7a9b76;
    color: #ffffff;
}

#cookie-accept:hover {
    background-color: #658260;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7a9b76;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #7a9b76;
}

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

.hero-text-block {
    max-width: 550px;
    z-index: 2;
    margin-left: 5%;
    margin-top: 3rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

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

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #7a9b76;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #658260;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8e4df;
}

.intro-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.intro-left {
    flex: 1;
    padding-left: 8%;
}

.intro-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

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

.intro-right-offset {
    flex: 1;
    margin-top: -4rem;
}

.intro-right-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e4df;
}

.problem-reveal {
    background-color: #f0ede8;
    padding: 5rem 2rem;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.problem-text-irregular {
    flex: 1.3;
    padding-right: 3rem;
    margin-top: 2rem;
}

.problem-text-irregular h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.problem-text-irregular p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.problem-visual-stack {
    flex: 1;
}

.visual-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.visual-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e4df;
}

.insight-diagonal {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-block-left {
    flex: 1;
    padding-right: 2rem;
    margin-top: -3rem;
}

.insight-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.insight-block-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.insight-image-right {
    flex: 1;
}

.insight-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8e4df;
}

.services-grid-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c2c2c;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #faf8f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e4df;
}

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7a9b76;
    margin-bottom: 1.2rem;
}

.select-service {
    width: 100%;
    padding: 0.8rem;
    background-color: #7a9b76;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.testimonials-scattered {
    padding: 6rem 2rem;
    background-color: #f0ede8;
}

.testimonials-scattered h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c2c2c;
}

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

.testimonial {
    width: calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-pos-1 {
    margin-top: -1.5rem;
}

.testimonial-pos-2 {
    margin-top: 2rem;
}

.testimonial-pos-3 {
    margin-top: 0;
}

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

.testimonial cite {
    font-size: 0.9rem;
    color: #7a9b76;
    font-style: normal;
}

.form-diagonal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.contact-form {
    background-color: #faf8f5;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 1.8rem;
}

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0ccc7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #7a9b76;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #7a9b76;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #658260;
}

.footer-asymmetric {
    background-color: #3d3d3d;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #7a9b76;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7a9b76;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

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

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 2rem;
    }

    .intro-asymmetric,
    .problem-container,
    .insight-diagonal {
        flex-direction: column;
    }

    .intro-left,
    .problem-text-irregular {
        padding-left: 0;
        padding-right: 0;
    }

    .intro-right-offset {
        margin-top: 2rem;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

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

    .testimonial {
        width: 100%;
        min-width: auto;
    }

    .testimonial-pos-1,
    .testimonial-pos-2,
    .testimonial-pos-3 {
        margin-top: 0;
    }

    .nav-floating {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}
