/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3b4d;
}

/* Editorial Navigation */
.nav-editorial {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #5a5a5a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover {
    color: #1a5f7a;
}

/* Editorial Container */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Story Image */
.story-image {
    margin: 3rem 0;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

/* Story Section */
.story-section {
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
}

.story-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.story-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.story-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Inline CTA */
.inline-cta {
    background: #f5f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #1a5f7a;
}

.inline-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0d3b4d;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.btn-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.service-card p {
    margin-bottom: 1rem;
    color: #5a5a5a;
    font-size: 1rem;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5f7a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials Inline */
.testimonials-inline {
    margin: 3rem 0;
}

.testimonials-inline blockquote {
    border-left: 4px solid #1a5f7a;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #3a3a3a;
}

.testimonials-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #7a7a7a;
}

/* Form Section */
.form-section {
    background: #f9f9f9;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-section > p {
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Story Footer */
.story-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.story-footer p {
    margin-bottom: 1rem;
    color: #7a7a7a;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.copyright {
    font-size: 0.85rem;
    color: #9a9a9a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie.accept {
    background: #1a5f7a;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail {
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 6px;
    background: #ffffff;
}

.service-detail.highlight {
    border-color: #1a5f7a;
    background: #f5f9fa;
}

.service-detail h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-block {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Lists */
.promise-list,
.document-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promise-list li,
.document-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

.promise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
}

.document-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-size: 1.5rem;
}

/* Thanks Page */
.thanks-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.next-steps {
    list-style: decimal;
    margin-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Legal Page */
.legal-page .story-section {
    margin-bottom: 2.5rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #f5f9fa;
    border-radius: 6px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #5a5a5a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.15rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .inline-cta {
        padding: 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .service-detail {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.7rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }
}
