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

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

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

a:hover {
    color: #0d3e52;
}

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

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

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

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

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

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

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-text-centered h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.hero-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
}

/* Story Sections */
.story-intro,
.story-section {
    margin-bottom: 3.5rem;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block h2 {
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.text-block h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.text-block h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 1.25rem;
}

.text-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.text-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 0.5rem;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

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

.link-arrow {
    font-size: 1.1rem;
    color: #1a5f7a;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Highlight Boxes */
.highlight-box {
    background: #f0f7fa;
    border-left: 4px solid #1a5f7a;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.box-content h3 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.box-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3c3c3c;
}

.values-list {
    list-style: none;
    margin: 1rem 0;
}

.values-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: #2c2c2c;
    font-weight: 500;
}

.values-list li:before {
    content: "→ ";
    color: #1a5f7a;
    font-weight: bold;
}

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

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

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

.service-item h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #3c3c3c;
}

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

.pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

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

.price-note {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Buttons */
.btn-select,
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-select:hover,
.btn-primary:hover {
    background: #0d3e52;
    transform: translateY(-2px);
}

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

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

.btn-submit {
    background: #1a5f7a;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3c3c3c;
}

.testimonial-inline blockquote p {
    margin-bottom: 1rem;
}

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

/* CTA Boxes */
.cta-box-centered {
    text-align: center;
    background: #1a5f7a;
    color: #ffffff;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 6px;
}

.cta-box-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0f2f7;
}

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

.cta-box-centered .btn-primary:hover {
    background: #e0f2f7;
}

/* Info Grid */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3c3c3c;
}

/* Forms */
.form-section {
    margin: 4rem 0;
    background: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.form-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 1.85rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
}

.editorial-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    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-group textarea {
    resize: vertical;
}

/* Final Note */
.final-note {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-style: italic;
}

.final-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 1rem;
}

/* Page Headers */
.page-header-simple {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

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

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

.contact-details {
    margin-top: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #3c3c3c;
    margin-bottom: 0.5rem;
}

.detail-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

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

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

.next-steps h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: steps;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    position: relative;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #1a5f7a;
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.info-box {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
    font-size: 1rem;
    color: #3c3c3c;
}

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

/* Legal Content */
.legal-content {
    max-width: 900px;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-minimal {
    background: #2c2c2c;
    color: #ffffff;
    padding: 2.5rem 0;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.footer-links a {
    color: #e0e0e0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-note {
    font-size: 0.85rem;
    color: #aaa;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2c2c2c;
}

/* Info Section */
.info-section {
    margin: 3rem 0;
}

.team-info {
    margin: 3rem 0;
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-text-centered h1 {
        font-size: 1.85rem;
    }

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

    .text-block h2 {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 1.75rem;
    }

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

    .cta-box-centered {
        padding: 2.5rem 1.5rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .thanks-actions {
        width: 100%;
    }

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

@media (min-width: 769px) {
    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 280px;
    }

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

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

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