* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #94d3ac;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #94d3ac;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #7bc096;
}

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #94d3ac;
}

.ad-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-overlay-text p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

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

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.story-intro p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.visual-break {
    margin: 0;
}

.image-full-width {
    width: 100%;
    background-color: #e8e8e8;
}

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

.problem-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.problem-reveal .content-wide {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.problem-image {
    flex: 1;
    background-color: #f5f5f5;
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #f9f4f0;
}

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

.insight-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.insight-section em {
    font-style: italic;
    color: #94d3ac;
}

.visual-carousel {
    padding: 4rem 0;
    background-color: #ffffff;
}

.carousel-images {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 0 2rem;
    scroll-snap-type: x mandatory;
}

.carousel-images img {
    flex: 0 0 auto;
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: center;
    background-color: #f0f0f0;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.testimonial-inline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-inline blockquote {
    border-left: 4px solid #94d3ac;
    padding-left: 2rem;
    font-size: 1.125rem;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

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

.services-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.services-reveal > .content-wide > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #4a4a4a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 350px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94d3ac;
    margin: 1.5rem 1.5rem 1rem !important;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background-color: #94d3ac;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #7bc096;
}

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

.form-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-section > .content-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #4a4a4a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #94d3ac;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #7bc096;
}

.final-cta {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #94d3ac;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

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

.footer-column ul li a:hover {
    color: #94d3ac;
}

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

@media (max-width: 768px) {
    .hero-overlay-text h1 {
        font-size: 2rem;
    }

    .hero-overlay-text p {
        font-size: 1.125rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .problem-reveal .content-wide {
        flex-direction: column;
    }

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

    .service-cards {
        flex-direction: column;
    }
}