/* 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: #2c3e50;
    background-color: #ffffff;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Core of Editorial Story Archetype */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Article Hero */
.article-hero {
    margin-bottom: 3rem;
}

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

.subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
}

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

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

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    text-align: left;
}

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

/* Typography - Editorial Style */
.intro-section {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

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

h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #2c3e50;
}

/* Content Images - Inline Editorial Style */
.content-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

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

/* Highlight Boxes */
.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Inline CTAs - Soft Editorial Style */
.inline-cta-soft {
    margin: 2rem 0;
    text-align: center;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #2980b9;
}

/* Section CTAs */
.section-cta {
    margin: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h3 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    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.2);
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

/* Testimonials - Inline Editorial Style */
.testimonial-inline {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 3px solid #e0e0e0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

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

/* Services List */
.services-list {
    margin: 2rem 0;
}

.service-item {
    background-color: #fafafa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease;
}

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

.service-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1rem;
}

/* Detailed Services */
.services-detailed {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-header h2 {
    margin: 0;
    font-size: 1.75rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
}

.service-body {
    padding: 2rem;
}

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

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

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.step h3 {
    color: #3498db;
    margin-top: 0;
}

/* Contact Form */
.contact-form-section {
    margin: 3rem 0;
    background-color: #f8f9fa;
    padding: 3rem 2.5rem;
    border-radius: 10px;
}

.contact-form-section h3 {
    margin-top: 0;
}

.service-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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: #3498db;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Details */
.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-top: 0;
    color: #3498db;
}

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

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

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
}

/* Value Items */
.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    margin-top: 0;
    color: #3498db;
}

/* Criteria List */
.criteria-list {
    list-style: none;
    padding-left: 0;
}

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

.criteria-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.success-icon {
    margin: 2rem auto;
}

.thanks-info-box {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    color: #3498db;
    margin-top: 0;
}

.selected-service {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.additional-info {
    text-align: left;
    margin: 3rem 0;
}

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

.info-list li {
    margin-bottom: 0.75rem;
}

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

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

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

code {
    background-color: #f4f4f4;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

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

.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 {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: #e74c3c;
    color: white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .article-hero h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .lead {
        font-size: 1.15rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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

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

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

    .cta-card {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .article-hero h1,
    .page-header h1 {
        font-size: 1.75rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

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