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

html {
    scroll-behavior: smooth;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

/* Editorial Hero */
.editorial-hero {
    padding: 80px 20px 60px;
    background-color: #f8f9fa;
}

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

.hero-headline {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    font-weight: 400;
}

/* Editorial Text Sections */
.editorial-text-section {
    padding: 60px 20px;
}

.editorial-text-section.bg-light {
    background-color: #f8f9fa;
}

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

.text-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 40px;
}

.text-narrow h2:first-child {
    margin-top: 0;
}

.text-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 32px;
}

.text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-narrow ul,
.text-narrow ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.text-narrow li {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 8px;
}

.text-narrow a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.text-narrow a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Editorial Image Blocks */
.editorial-image-block {
    padding: 40px 0;
}

.editorial-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote Block */
.editorial-quote-block {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.editorial-quote-block blockquote {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.editorial-quote-block p {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

.editorial-quote-block cite {
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

/* Services Inline Section */
.services-inline {
    padding: 60px 20px;
    background-color: #ffffff;
}

.services-intro {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card-editorial {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 2px;
    border-left: 4px solid #3498db;
}

.service-card-editorial h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card-editorial p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Form Section */
.editorial-form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-intro-text {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.selected-service-box {
    background-color: #d5f4e6;
    border-left: 4px solid #27ae60;
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 2px;
}

.selected-service-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.selected-service-box p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Final CTA Section */
.editorial-final-cta {
    padding: 80px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.editorial-final-cta h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.editorial-final-cta p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
}

/* Services Detailed */
.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-detail-card {
    padding: 60px 20px;
}

.service-detail-card.bg-light {
    background-color: #f8f9fa;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.service-includes li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 24px;
}

.btn-service-select {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-info-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 2px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: #3498db;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-headline {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-confirmation-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.service-confirmation-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-name-display {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.service-price-display {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.steps-list li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
    counter-increment: step-counter;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.additional-info {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    text-align: left;
}

.additional-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 0;
}

.additional-info a {
    color: #3498db;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page .text-narrow h2 {
    font-size: 28px;
    margin-top: 48px;
}

.legal-page .text-narrow h3 {
    font-size: 22px;
}

.legal-page .text-narrow p,
.legal-page .text-narrow li {
    font-size: 16px;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

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

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

@media (max-width: 768px) {
    .hero-headline {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .text-narrow h2 {
        font-size: 28px;
    }

    .text-narrow p,
    .text-narrow li {
        font-size: 17px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-price {
        font-size: 28px;
    }

    .service-price-large {
        font-size: 36px;
    }

    .thanks-headline {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .brand-logo {
        font-size: 18px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-submit,
    .btn-cta-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}