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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-visual {
    margin-top: 0;
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100vh;
    background-color: #d4c5b9;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.story-intro {
    background-color: #fff;
    padding: 100px 20px;
}

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

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #e8e0d8;
}

.insight-section {
    background-color: #f5f2ef;
    padding: 120px 20px;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.insight-visual {
    flex: 1;
    background-color: #d4c5b9;
}

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

.problem-amplify {
    background-color: #fff;
    padding: 100px 20px;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

.problem-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #faf8f6;
    border-left: 3px solid #8b6f47;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.problem-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.trust-build {
    background-color: #e8e3de;
    padding: 100px 20px;
}

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

.trust-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4c5b9;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.testimonials-inline {
    background-color: #fff;
    padding: 100px 20px;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f7f5;
    border-left: 4px solid #8b6f47;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #7a7a7a;
    font-weight: 500;
}

.testimonial-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #e8e0d8;
}

.benefits-reveal {
    background-color: #2c2c2c;
    color: #fff;
    padding: 100px 20px;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 300;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 240px;
    padding: 30px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f5f2ef;
    font-weight: 500;
}

.benefit-item p {
    font-size: 16px;
    color: #c9c9c9;
    line-height: 1.7;
}

.services-pricing {
    background-color: #fafafa;
    padding: 120px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e0d8;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a5a5a;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 32px;
    color: #8b6f47;
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service {
    background-color: #8b6f47;
    color: #fff;
    padding: 15px 35px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f5f2ef;
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.form-container p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #8b6f47;
    color: #fff;
    padding: 16px 40px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #6f5838;
}

.final-cta {
    background-color: #2c2c2c;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 300;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d4d4d4;
}

.cta-link {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #c9c9c9;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #a9a9a9;
}

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

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

.footer-section ul li a {
    color: #a9a9a9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #242424;
    border-left: 3px solid #8b6f47;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a9a9a9;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #7a7a7a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 25px 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #3a3a3a;
}

@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .insight-split,
    .trust-layout {
        flex-direction: column;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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