/* 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-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.3rem;
}

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

a:hover {
    color: #0d3a6b;
    text-decoration: underline;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* Navigation */
.nav-top {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.logo:hover {
    text-decoration: none;
    color: #0d3a6b;
}

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

.nav-links a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

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

/* Editorial Container - Main Layout Structure */
.editorial-container {
    background-color: #fafafa;
    padding: 0;
}

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

/* Narrow Content - Core Editorial Layout */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.narrow-content.centered {
    text-align: center;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    color: #fff;
    padding: 3rem 2rem 2rem;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-overlay .lead {
    font-size: 1.25rem;
    max-width: 700px;
    color: #f0f0f0;
}

/* Page Header */
.page-header {
    max-width: 680px;
    margin: 3rem auto 2rem;
    padding: 0 1.5rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.15rem;
    color: #555;
    font-style: italic;
}

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section.alternate-bg {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.story-section.cta-section {
    background-color: #1a5490;
    color: #fff;
    padding: 4rem 0;
}

.story-section.cta-section h2,
.story-section.cta-section h3,
.story-section.cta-section p {
    color: #fff;
}

.story-section.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

/* Inline Images - Editorial Style */
.inline-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    display: block;
}

/* Inline Quote */
.inline-quote {
    display: block;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: #f8f8f8;
    border-left: 4px solid #1a5490;
    font-style: italic;
    font-size: 1.1rem;
}

.inline-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

/* Service List */
.service-list {
    margin: 2rem 0;
}

.service-item {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-item h3 {
    color: #1a5490;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 1rem;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d3a6b;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select-service,
.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #1a5490;
    color: #fff;
    margin-right: 1rem;
}

.btn-primary:hover {
    background-color: #0d3a6b;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: #1a5490;
    color: #fff;
    text-decoration: none;
}

.btn-submit {
    background-color: #1a5490;
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

.btn-submit:hover {
    background-color: #0d3a6b;
}

.btn-select-service {
    background-color: #28a745;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

.btn-select-service:hover {
    background-color: #218838;
}

.cta-inline {
    background-color: #1a5490;
    color: #fff;
    padding: 0.8rem 1.8rem;
    margin: 1.5rem 0;
}

.cta-inline:hover {
    background-color: #0d3a6b;
    text-decoration: none;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #28a745;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #218838;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #1a5490;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-message {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #28a745;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-group {
    margin-top: 3rem;
}

.cta-group a {
    margin: 0.5rem;
}

/* Legal Content */
.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 3rem 0 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #ccc;
    font-size: 0.9rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #fff;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay .lead {
        font-size: 1rem;
    }

    .narrow-content {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .story-section {
        padding: 2rem 0;
    }

    .service-item {
        padding: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 300px;
    }

    .hero-overlay {
        padding: 2rem 1rem 1rem;
    }

    .hero-overlay h1 {
        font-size: 1.6rem;
    }
}