/* Reset and 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: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #0d3f52;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8e8e8;
    padding: 1.25rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Main Layout Archetype */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.hero-image-inline {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.hero-image-inline img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Story Sections - Narrow Centered Text */
.story-section {
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
}

.text-narrow {
    max-width: 680px;
    width: 100%;
}

.text-narrow h2 {
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.text-narrow h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.text-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.text-narrow ul,
.text-narrow ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.text-narrow li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a5f7a;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid #1a5f7a;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #0d3f52;
    border-bottom-color: #0d3f52;
    transform: translateY(-2px);
}

/* Image Break Section */
.image-break {
    margin: 4rem 0;
    padding: 0 1.5rem;
}

.image-break img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 1.5rem;
    background-color: #fafafa;
}

.services-cards {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-top: 1rem;
}

.btn-select-service {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.selected-service-text {
    background-color: #e8f4f8;
    padding: 1.25rem;
    border-radius: 6px;
    border-left: 4px solid #1a5f7a;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
    display: none;
}

.selected-service-text.show {
    display: block;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.btn-submit {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.btn-sticky {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #0d3f52;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.5);
}

/* Services Detail Page */
.services-detail {
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 3rem 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8e8e8;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
    min-width: 250px;
}

.price-display {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a5f7a;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.service-description h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-description li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 0.75rem;
}

.premium-card {
    border: 3px solid #1a5f7a;
}

.premium-card .service-detail-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8fa 100%);
}

/* CTA Section */
.cta-section {
    padding: 4rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-align: center;
}

.cta-section .text-narrow h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section .text-narrow p {
    color: #e8f4f8;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5f7a;
    padding: 1.125rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a5f7a;
    padding: 1rem 2rem;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

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

/* Contact Page */
.contact-section {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #1a5f7a;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #1a5f7a;
    margin: 1rem 0;
    font-weight: 600;
    color: #1a5f7a;
    display: none;
}

.service-confirmation.show {
    display: block;
}

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

.step-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 0.75rem;
}

.thanks-quote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
}

.thanks-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
}

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

/* Legal Pages */
.legal-page .hero-text-narrow {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.65rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-content table th {
    background-color: #f0f0f0;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid #d0d0d0;
}

.legal-content table td {
    padding: 1rem;
    border: 1px solid #d0d0d0;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design - Mobile First Enhanced */
@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .service-card {
        flex-direction: row;
    }

    .service-image {
        width: 40%;
        height: auto;
        min-height: 300px;
    }

    .service-content {
        width: 60%;
    }

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

@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3.25rem;
    }

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

    .text-narrow h2 {
        font-size: 2.15rem;
    }

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

    .contact-info-block {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }
}

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

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

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .service-header {
        flex-direction: column;
    }

    .price-display {
        font-size: 1.85rem;
    }
}

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

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

    .text-narrow h2 {
        font-size: 1.65rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .logo {
        font-size: 1.25rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}
