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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b5a3c;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a3c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-scroll {
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #8b5a3c;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 700px;
}

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

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.story-intro {
    background-color: #ffffff;
}

.inline-image-container {
    margin: 50px 0;
    background-color: #8b5a3c;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-section {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

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

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #3a3a3a;
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: 700;
}

.problem-visual {
    flex: 1;
    background-color: #8b5a3c;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-reveal {
    background-color: #ffffff;
}

.inline-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #8b5a3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.inline-cta:hover {
    background-color: #6d4630;
}

.trust-building {
    padding: 100px 40px;
    background-color: #2c2c2c;
}

.grid-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #3a3a3a;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #b0b0b0;
}

.image-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #8b5a3c;
}

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

.benefits-layered {
    padding: 100px 40px;
    background-color: #ffffff;
}

.benefits-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.benefit-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.benefit-item {
    width: 380px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.benefit-item h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a4a4a;
}

.price-label {
    font-size: 28px;
    font-weight: 700;
    color: #8b5a3c;
    margin: 20px 24px;
}

.service-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-select.selected {
    background-color: #4a7c59;
}

.form-section {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

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

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.order-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

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

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

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

.form-group input:focus {
    outline: none;
    border-color: #8b5a3c;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666666;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.final-cta {
    padding: 100px 40px;
    background-color: #8b5a3c;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 19px;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #8b5a3c;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

.thanks-hero {
    padding: 120px 40px;
    background-color: #8b5a3c;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin: 40px 0;
}

.thanks-link {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #8b5a3c;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.thanks-link:hover {
    background-color: #f0f0f0;
}

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

    .hero-subtext {
        font-size: 18px;
    }

    .offset-layout {
        flex-direction: column;
    }

    .navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .benefit-item {
        width: 100%;
    }

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