/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    color: #1a5490;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation - minimal style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5490;
    text-decoration: none;
}

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

.nav-links a {
    color: #2d2d2d;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Editorial content - narrow column layout */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-narrow {
    margin-bottom: 2.5rem;
}

.hero-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.hero-image {
    margin: 3rem 0;
}

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

/* Story sections */
.story-intro,
.story-section,
.trust-builder,
.problem-amplification,
.visual-story,
.social-proof,
.value-reveal,
.urgency-section,
.booking-section,
.final-cta {
    margin: 4rem 0;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2d2d2d;
}

p {
    margin-bottom: 1.5rem;
}

em {
    font-style: italic;
    color: #1a5490;
}

strong {
    font-weight: 700;
}

/* Insight block */
.insight-block {
    margin: 4rem 0;
}

.callout-box {
    background: #f5f9fc;
    border-left: 4px solid #1a5490;
    padding: 2rem;
    margin: 2rem 0;
}

.callout-box h3 {
    margin-top: 0;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

/* Inline images */
.inline-image {
    margin: 3rem 0;
}

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

/* Feature lists */
.feature-list,
.benefit-list,
.included-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.feature-list li,
.benefit-list li,
.included-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-inline {
    margin: 4rem 0;
}

blockquote {
    background: #fff;
    border-left: 4px solid #1a5490;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* CTAs */
.cta-inline {
    margin: 3rem 0;
    text-align: center;
}

.cta-text-link {
    font-size: 1.2rem;
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.cta-text-link:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* Castle cards */
.castle-card {
    margin: 3rem 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.castle-card img {
    width: 100%;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-top: 0;
}

.card-content p {
    margin-bottom: 0;
}

/* Service cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
}

.service-card.featured {
    border: 2px solid #1a5490;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a5490;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0;
}

.btn-select-service,
.btn-select-service-link {
    display: inline-block;
    background: #1a5490;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-select-service:hover,
.btn-select-service-link:hover {
    background: #14406e;
    text-decoration: none;
}

/* Section intro */
.section-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Urgency box */
.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #f0ad4e;
    padding: 2rem;
    margin: 2rem 0;
}

.urgency-box h3 {
    margin-top: 0;
    color: #856404;
}

.urgency-box p {
    color: #856404;
    margin-bottom: 0;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

/* Booking form */
.booking-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.btn-submit {
    background: #1a5490;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #14406e;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f5f9fc;
    border-radius: 4px;
    margin: 4rem 0;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.btn-cta-large {
    display: inline-block;
    background: #1a5490;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 1.5rem;
}

.btn-cta-large:hover {
    background: #14406e;
    text-decoration: none;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a5490;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 90;
    display: none;
}

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

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

.sticky-cta-content span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: #fff;
    color: #1a5490;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-sticky:hover {
    background: #f0f0f0;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

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

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #1a5490;
    color: #fff;
}

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

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

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

/* Page content styles */
.page-content {
    min-height: 60vh;
}

.info-box,
.cta-box {
    background: #f5f9fc;
    border-left: 4px solid #1a5490;
    padding: 2rem;
    margin: 2rem 0;
}

.cta-box {
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
}

.btn-cta,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    margin: 0.5rem;
}

.btn-cta {
    background: #1a5490;
    color: #fff;
}

.btn-cta:hover {
    background: #14406e;
    text-decoration: none;
}

.btn-secondary {
    background: #666;
    color: #fff;
}

.btn-secondary:hover {
    background: #555;
    text-decoration: none;
}

/* Contact page */
.contact-info {
    margin: 3rem 0;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1a5490;
    font-weight: 600;
}

/* Thanks page */
.thanks-page {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-info {
    background: #f5f9fc;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info ol {
    padding-left: 1.5rem;
}

.thanks-info li {
    margin-bottom: 1rem;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Legal pages */
.legal-page {
    font-size: 0.95rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table th,
.gdpr-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.gdpr-table th {
    background: #f5f9fc;
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

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

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

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

    .testimonial-grid {
        gap: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

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

    .thanks-cta a {
        width: 100%;
        text-align: center;
    }
}

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

    .price {
        font-size: 1.5rem;
    }

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