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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #8b6f47;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s;
}

.hero-full {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

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

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c2c2c;
    line-height: 1.3;
}

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

.problem-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.split-content p {
    font-size: 1.0625rem;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-reveal {
    padding: 100px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.offset-text {
    max-width: 650px;
    margin-bottom: 50px;
}

.offset-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.25;
}

.offset-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
}

.insight-image-grid {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.insight-image-grid img {
    width: calc(50% - 15px);
    height: auto;
    object-fit: cover;
    background-color: #2a2a2a;
}

.trust-building {
    padding: 100px 30px;
    background-color: #f4f1ed;
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.centered-block > p {
    font-size: 1.125rem;
    margin-bottom: 60px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-flow {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.feature-card {
    flex: 1;
    padding: 35px 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.feature-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 90px 30px;
    background-color: #8b6f47;
    color: #ffffff;
}

.testimonial-block {
    margin-bottom: 50px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.85;
    text-align: right;
}

.services-reveal {
    padding: 100px 30px;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.services-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 60px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 25px;
    background-color: #e0e0e0;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-item p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 0;
}

.cta-button {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #8b6f47;
}

.form-section {
    padding: 100px 30px;
    background-color: #f4f1ed;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.0625rem;
    margin-bottom: 40px;
    color: #4a4a4a;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
    margin-top: 10px;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #e8e8e8;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 30px;
}

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

.cookie-content a {
    color: #8b6f47;
}

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

.accept-cookies,
.reject-cookies {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.accept-cookies {
    background-color: #8b6f47;
    color: #ffffff;
}

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

.accept-cookies:hover,
.reject-cookies:hover {
    opacity: 0.85;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: #f9f9f9;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-content .cta-button {
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
}

.contact-page {
    padding: 80px 30px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info-item p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-container ul li {
    margin-bottom: 8px;
    color: #4a4a4a;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 30px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

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

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .features-flow {
        flex-direction: column;
    }

    .insight-image-grid {
        flex-direction: column;
    }

    .insight-image-grid img {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
