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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c1810;
    background: #fefdfb;
}

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

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 251, 0.97);
    border-bottom: 1px solid #e8dcc8;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #8b4513;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #5a4332;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #8b4513;
}

.hero-section {
    margin-top: 80px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f4ede4 0%, #fefdfb 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23d4b896" opacity="0.15"/></svg>');
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a67c52;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 62px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #2c1810;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    color: #5a4332;
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    background: #8b4513;
    color: #fff;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-primary:hover {
    background: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.25);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #8b4513;
    padding: 17px 46px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #8b4513;
    transition: all 0.3s;
    cursor: pointer;
    font-family: inherit;
}

.cta-secondary:hover {
    background: #8b4513;
    color: #fff;
}

.story-section {
    padding: 100px 0;
}

.story-intro {
    font-size: 20px;
    color: #5a4332;
    margin-bottom: 32px;
    font-style: italic;
    line-height: 1.8;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a3828;
    line-height: 1.9;
}

.story-content strong {
    color: #8b4513;
    font-weight: 600;
}

.image-block {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-section {
    background: #f9f5f0;
    padding: 90px 0;
    border-top: 1px solid #e8dcc8;
    border-bottom: 1px solid #e8dcc8;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #a67c52;
    margin-bottom: 18px;
    font-weight: 700;
}

.section-title {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c1810;
    font-weight: 400;
    line-height: 1.3;
}

.problem-list {
    list-style: none;
    margin-top: 48px;
}

.problem-list li {
    font-size: 19px;
    margin-bottom: 28px;
    padding-left: 40px;
    position: relative;
    color: #4a3828;
    line-height: 1.7;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c86432;
    font-size: 24px;
    font-weight: 700;
}

.insight-section {
    padding: 100px 0;
}

.insight-box {
    background: linear-gradient(135deg, #fff9f0 0%, #fefdfb 100%);
    padding: 60px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
    margin: 50px 0;
}

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

.split-section {
    padding: 90px 0;
    background: #fefdfb;
}

.split-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefits-section {
    padding: 100px 0;
    background: #f4ede4;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.benefit-card {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 3px solid #8b4513;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c1810;
    font-weight: 600;
}

.benefit-text {
    font-size: 17px;
    color: #5a4332;
    line-height: 1.8;
}

.testimonial-section {
    padding: 90px 0;
}

.testimonial-wrapper {
    margin: 50px 0;
}

.testimonial {
    background: #f9f5f0;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #4a3828;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 16px;
    color: #8b4513;
    font-weight: 600;
    font-style: normal;
}

.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefdfb 0%, #f9f5f0 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 42px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-name {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c1810;
    font-weight: 600;
}

.service-description {
    font-size: 16px;
    color: #5a4332;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    color: #8b4513;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-cta {
    background: #8b4513;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    display: block;
}

.service-cta:hover {
    background: #6d3410;
}

.form-section {
    padding: 100px 0;
    background: #2c1810;
    color: #fefdfb;
}

.form-section .section-title {
    color: #fefdfb;
}

.form-section .section-label {
    color: #d4b896;
}

.order-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: #3d2818;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #5a4332;
    border-radius: 4px;
    font-size: 16px;
    background: #fefdfb;
    color: #2c1810;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: #d4b896;
    color: #2c1810;
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.form-submit:hover {
    background: #c9a775;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 80px 0;
    background: #fff9f0;
    border-top: 2px solid #d4b896;
    text-align: center;
}

.urgency-text {
    font-size: 24px;
    color: #c86432;
    font-weight: 600;
    margin-bottom: 12px;
}

.urgency-subtext {
    font-size: 17px;
    color: #5a4332;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8b4513;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-cta-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.sticky-cta-button {
    background: #fefdfb;
    color: #8b4513;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.sticky-cta-button:hover {
    background: #e8dcc8;
}

footer {
    background: #2c1810;
    color: #d4b896;
    padding: 60px 0 30px;
}

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

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

.footer-title {
    font-size: 18px;
    color: #fefdfb;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d4b896;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fefdfb;
}

.footer-bottom {
    border-top: 1px solid #5a4332;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #a67c52;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c1810;
    color: #fefdfb;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.visible {
    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-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: #d4b896;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

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

.cookie-accept:hover {
    background: #6d3410;
}

.cookie-reject {
    background: transparent;
    color: #d4b896;
    border: 2px solid #5a4332;
}

.cookie-reject:hover {
    background: #3d2818;
}

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f4ede4 0%, #fefdfb 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 400;
}

.page-subtitle {
    font-size: 20px;
    color: #5a4332;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c1810;
    font-weight: 600;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 40px;
    color: #4a3828;
    font-weight: 600;
}

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

.content-section ul,
.content-section ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.content-section li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a3828;
    line-height: 1.7;
}

.contact-info {
    background: #f9f5f0;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 17px;
}

.contact-info strong {
    color: #8b4513;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c1810;
}

.thanks-text {
    font-size: 19px;
    color: #5a4332;
    margin-bottom: 40px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

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

    nav {
        display: none;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .benefit-card,
    .testimonial,
    .order-form {
        padding: 30px;
    }
}
