/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #0d3f52;
}

/* ===== NAVIGATION ===== */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== EDITORIAL CONTENT LAYOUT ===== */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== STORY SECTIONS ===== */
.story-section {
    margin-bottom: 4rem;
}

.story-section h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: #3d3d3d;
}

.story-section ul,
.story-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.story-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #3d3d3d;
}

/* ===== ACCENT SECTIONS ===== */
.accent-bg {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 8px;
}

/* ===== INLINE IMAGES ===== */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== TESTIMONIALS ===== */
.testimonial-inline {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: #f4f7f9;
    border-left: 4px solid #1a5f7a;
    margin: 2rem 0;
    font-style: italic;
    color: #2d2d2d;
    line-height: 1.7;
}

.testimonial-inline cite {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.testimonial-block {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #2d2d2d;
}

.testimonial-block cite {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

/* ===== CTAs ===== */
.inline-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.inline-cta:hover {
    background-color: #0d3f52;
    color: #ffffff;
    transform: translateY(-2px);
}

.section-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    margin: 1.5rem 1rem 0 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.section-cta-btn:hover {
    background-color: #0d3f52;
    color: #ffffff;
    transform: translateY(-2px);
}

.section-cta-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: #1a5f7a;
    font-weight: 600;
    margin: 1.5rem 0 0 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.section-cta-link:hover {
    border-bottom-color: #1a5f7a;
}

.final-cta {
    text-align: center;
    padding: 3rem 0;
}

.closing-statement {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #2d2d2d;
}

.final-cta-btn {
    display: inline-block;
    padding: 1.125rem 3rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.final-cta-btn:hover {
    background-color: #0d3f52;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== SERVICE STORY LIST ===== */
.service-story-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-story-item {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-story-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-story-item h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-story-item p {
    margin-bottom: 1rem;
    color: #555;
}

.price-reveal {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a5f7a;
    margin-top: 1rem;
}

/* ===== PROCESS & TRUST SECTIONS ===== */
.process-story p {
    margin-bottom: 1.5rem;
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

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

/* ===== FORMS ===== */
.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    background-color: #0d3f52;
    transform: translateY(-2px);
}

/* ===== SERVICES PRICING PAGE ===== */
.services-pricing {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
}

.featured-service {
    border: 2px solid #1a5f7a;
    background-color: #f4f7f9;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

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

.service-time {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    font-size: 0.95rem;
}

.pricing-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f4f7f9;
    border-radius: 6px;
    margin: 0.75rem 0;
}

.price-label {
    font-weight: 500;
    color: #2d2d2d;
}

.price-amount {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a5f7a;
}

.additional-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.additional-service-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.additional-service-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.additional-service-item p {
    margin-bottom: 0.75rem;
    color: #555;
}

.additional-price {
    display: block;
    font-weight: 700;
    color: #1a5f7a;
    font-size: 1.0625rem;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    margin: 3rem 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-block p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.travel-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.travel-method h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.travel-method p {
    color: #555;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.value-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    margin-bottom: 0;
}

/* ===== THANKS PAGE ===== */
.thanks-content {
    text-align: center;
}

.thanks-message {
    margin-bottom: 3rem;
}

.service-confirmation {
    font-weight: 600;
    color: #1a5f7a;
    font-size: 1.125rem;
    margin: 1.5rem 0;
}

.next-steps {
    margin: 2.5rem 0;
    text-align: left;
}

.steps-list {
    padding-left: 1.5rem;
}

.contact-reminder {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f4f7f9;
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.suggestion-link {
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

.suggestion-link:hover {
    border-color: #1a5f7a;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

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

.cookie-types-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.cookie-type h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.cookie-type p {
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

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

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

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    .editorial-hero h1 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1.375rem;
    }

    .accent-bg {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .contact-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-block {
        flex: 1;
        min-width: 250px;
    }

    .travel-info {
        flex-direction: row;
    }

    .travel-method {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-suggestions {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .brand {
        font-size: 1.25rem;
    }

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

    .section-cta-btn {
        display: block;
        text-align: center;
        margin: 1rem 0;
    }

    .section-cta-link {
        display: block;
        text-align: center;
        margin: 1rem 0;
    }

    .pricing-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
