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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.story-content {
    max-width: 100%;
    margin: 0 auto;
}

.story-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #d4c5b9;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.3;
    font-weight: 400;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
}

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

.intro-text {
    font-size: 1.3rem;
    color: #3a3a3a;
    margin-bottom: 28px;
    line-height: 1.6;
}

.narrow-column p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.narrow-column h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 400;
}

.story-image-break {
    width: 100%;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
    background-color: #e8e4e0;
}

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

.story-problem {
    background-color: #f9f7f5;
}

.inline-cta-block {
    padding: 80px 24px;
    background-color: #8b7355;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background-color: rgba(255,255,255,0.95);
    border-radius: 2px;
}

.cta-card h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 400;
}

.cta-link {
    display: inline-block;
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-link:hover {
    background-color: #3a3a3a;
}

.story-insight {
    background-color: #fff;
}

.testimonials-inline {
    background-color: #f4f1ed;
    padding: 80px 24px;
}

.testimonial {
    max-width: 680px;
    margin: 0 auto 48px;
    padding: 32px;
    background-color: #fff;
    border-left: 4px solid #8b7355;
}

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

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.story-benefits {
    background-color: #fff;
}

.services-reveal {
    padding: 60px 24px;
    background-color: #fafafa;
}

.service-item {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 48px;
    background-color: #fff;
    padding: 40px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-content p {
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 1.5rem;
    color: #8b7355;
    font-weight: 600;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

.service-image {
    flex: 1;
    background-color: #e8e4e0;
}

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

.order-section {
    background-color: #fff;
    padding: 80px 24px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #3a3a3a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-section {
    background-color: #f4f1ed;
    padding: 40px 24px;
}

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

.contact-info-block {
    margin: 48px 0;
}

.contact-item {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f9f7f5;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-item p {
    margin-bottom: 8px;
    color: #4a4a4a;
}

.narrow-column ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.narrow-column ul li {
    margin-bottom: 12px;
    color: #4a4a4a;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 200;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.cookie-accept:hover {
    background-color: #a58867;
}

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

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

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

    .service-item {
        flex-direction: column;
        padding: 24px;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}