/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a7f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ecf0f1;
    padding: 1.5rem;
    z-index: 9999;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: rgba(236, 240, 241, 0.1);
}

/* Navigation - Minimal Hidden Style */
.minimal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

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

.nav-menu li a:hover {
    color: #2980b9;
}

/* Editorial Container */
.editorial-container {
    margin-top: 70px;
}

/* Hero Editorial */
.hero-editorial {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    text-align: center;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #596a7a;
    margin-bottom: 0;
}

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

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-narrow strong {
    font-weight: 600;
    color: #1a252f;
}

/* Styled Lists */
.styled-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.cta-link {
    font-size: 1.15rem;
    color: #2980b9;
    font-weight: 600;
    border-bottom: 2px solid #2980b9;
    transition: all 0.3s ease;
}

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

/* Editorial Quote */
.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: #f8f9fa;
    border-left: 5px solid #2980b9;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
}

/* Visual Break */
.visual-break {
    margin: 4rem 0;
    padding: 0 1.5rem;
}

.visual-break img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image-Text Pair */
.image-text-pair {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.pair-image {
    flex: 1;
}

.pair-image img {
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pair-text {
    flex: 1;
}

.pair-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.pair-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #596a7a;
}

.inline-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: #2980b9;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.inline-btn:hover {
    background: #1a5a7f;
    color: white;
}

/* Services Preview */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #2980b9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-bottom: 0.8rem;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #596a7a;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1a5a7f;
}

/* Testimonial Section */
.testimonial-section {
    background: #34495e;
    color: white;
    padding: 4rem 1.5rem;
    margin: 4rem 0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
}

.testimonial p {
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

/* Inline CTA Box */
.inline-cta-box {
    background: linear-gradient(135deg, #2980b9 0%, #1a5a7f 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 4rem 0;
}

.inline-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.inline-cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2980b9;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #2980b9;
}

/* Editorial Form */
.editorial-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    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: #2980b9;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1a5a7f;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.service-detail {
    margin-bottom: 4rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #2980b9 0%, #1a5a7f 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.service-body {
    padding: 2rem;
    background: white;
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-body li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Contact Layout */
.contact-layout {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.info-block p {
    line-height: 1.7;
    color: #596a7a;
}

.info-block .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 1.5rem;
    text-align: center;
    min-height: 60vh;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2980b9;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.urgent-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    font-weight: 600;
}

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

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

.secondary-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #2980b9;
    color: #2980b9;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #2980b9;
    color: white;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.legal-page h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer */
.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

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

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

    .content-narrow {
        padding: 2.5rem 1.5rem;
    }

    .content-narrow h2 {
        font-size: 1.7rem;
    }

    .content-narrow p,
    .styled-list li {
        font-size: 1rem;
    }

    .image-text-pair {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-links {
        flex-direction: column;
        align-items: stretch;
    }

    .secondary-btn {
        text-align: center;
    }
}

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

    .service-card h3 {
        font-size: 1.2rem;
    }

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

    .testimonial {
        font-size: 1.1rem;
    }

    .inline-cta-box h3 {
        font-size: 1.5rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }
}
