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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-warm: #c17e5d;
}

body {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: #c19563;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.main-story {
    margin-top: 80px;
}

.story-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.4;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-intro {
    padding: 80px 0;
}

.intro-lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-style: italic;
}

.story-intro p {
    margin-bottom: 24px;
}

.inline-cta {
    margin: 48px 0;
    text-align: center;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.story-image-break {
    width: 100%;
    margin: 60px 0;
}

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

.image-caption {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.story-problem {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-problem h2,
.story-insight h2,
.story-trust h2,
.story-urgency h2,
.story-form h2,
.services-pricing h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-problem p,
.story-insight p,
.story-trust p,
.story-urgency p {
    margin-bottom: 24px;
}

.inline-quote {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-warm);
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
}

.inline-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.story-insight {
    padding: 80px 0;
}

.insight-list {
    list-style: none;
    margin: 40px 0;
}

.insight-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
}

.inline-cta-block {
    margin: 56px 0;
    padding: 40px;
    background: var(--bg-light);
    text-align: center;
    border-radius: 8px;
}

.cta-prompt {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-medium);
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select-service {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #1f4558;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #c19563;
}

.story-trust {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-inline-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.testimonials-inline {
    padding: 80px 0;
}

.testimonial-card {
    margin: 32px 0;
    padding: 32px;
    background: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.services-pricing {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-pricing > .content-narrow > p {
    margin-bottom: 48px;
    font-size: 19px;
    color: var(--text-medium);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-select-service:hover {
    background: #1f4558;
}

.btn-select-service.selected {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.story-urgency {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-form {
    padding: 80px 0;
}

.service-form {
    margin: 40px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--text-medium);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    margin-top: 16px;
}

.btn-submit:hover {
    background: #1f4558;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.story-closing {
    padding: 80px 0;
    background: var(--primary-color);
}

.closing-thought {
    font-size: 28px;
    line-height: 1.5;
    color: var(--bg-white);
    text-align: center;
    font-style: italic;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 18px 32px;
    background: var(--accent-warm);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.sticky-btn:hover {
    background: #a86f4f;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    color: #cccccc;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.thanks-message {
    padding: 120px 0;
    text-align: center;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message p {
    font-size: 20px;
    margin-bottom: 16px;
}

.thanks-service-info {
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    display: inline-block;
}

.thanks-service-info strong {
    color: var(--primary-color);
}

.contact-page {
    padding: 120px 40px 80px;
}

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

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-info {
    margin: 40px 0;
}

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

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.contact-info-item p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-page,
.services-page {
    padding: 120px 40px 80px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.page-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin: 24px 0 24px 40px;
    font-size: 18px;
    line-height: 1.7;
}

.page-content li {
    margin-bottom: 12px;
}

.legal-page {
    padding: 120px 40px 80px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .story-intro,
    .story-problem,
    .story-insight,
    .story-trust,
    .testimonials-inline,
    .services-pricing,
    .story-urgency,
    .story-form,
    .story-closing {
        padding: 60px 0;
    }

    .content-narrow {
        padding: 0 20px;
    }

    .intro-lead {
        font-size: 20px;
    }

    body {
        font-size: 17px;
    }

    .story-problem h2,
    .story-insight h2,
    .story-trust h2,
    .story-urgency h2,
    .story-form h2,
    .services-pricing h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .page-content h1,
    .contact-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
    }
}
