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

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.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 {
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
}

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

.nav-links a {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Editorial Container */
.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Story Header */
.story-header {
    margin-bottom: 60px;
    text-align: center;
}

.story-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 400;
}

/* Story Sections */
.story-section {
    margin-bottom: 80px;
}

.story-content {
    margin-bottom: 32px;
}

.story-content h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.story-content h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 32px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
}

.inline-story-image {
    margin: 32px 0;
    border-radius: 8px;
}

/* Highlight Section */
.highlight-section {
    margin: 80px 0;
}

.highlight-box {
    background-color: #f9fafb;
    padding: 48px 40px;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.highlight-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

/* Services Preview */
.services-preview {
    margin: 100px 0;
}

.services-preview h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.service-card.featured {
    border-color: #2563eb;
    border-width: 2px;
    background-color: #eff6ff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-select {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-select:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 80px 0;
    padding: 48px 40px;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #1f2937;
    font-style: italic;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #6b7280;
    font-style: normal;
    font-weight: 500;
}

/* Form Section */
.form-section {
    margin: 100px 0;
    padding: 60px 48px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

/* Inline CTA */
.inline-cta {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* Final CTA */
.final-cta {
    margin: 80px 0 40px;
    text-align: center;
    padding: 60px 24px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.final-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

/* Services Detailed */
.services-detailed {
    margin-top: 60px;
}

.service-detail {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.service-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 28px;
}

.service-benefits li {
    font-size: 16px;
    color: #374151;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Contact Page */
.contact-info {
    margin: 60px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 8px;
}

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

.faq-list {
    margin-top: 32px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

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

/* Thanks Page */
.thanks-header {
    background-color: #eff6ff;
    padding: 60px 24px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-content {
    margin: 60px 0;
}

.thanks-message h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.step {
    padding: 24px;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
}

.selected-service {
    margin-top: 32px;
    padding: 20px;
    background-color: #eff6ff;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #1e40af;
    text-align: center;
}

.thanks-additional {
    margin-top: 60px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.thanks-additional h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-additional p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 24px;
}

.thanks-links {
    list-style: none;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    font-size: 17px;
    color: #2563eb;
    font-weight: 500;
}

/* Legal Pages */
.legal-page .story-header {
    margin-bottom: 40px;
}

.legal-content {
    max-width: 740px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

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

.cookie-table td {
    color: #4b5563;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-minimal {
        padding: 20px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .story-header h1 {
        font-size: 36px;
    }

    .lead-text {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .story-content p {
        font-size: 17px;
    }

    .services-preview h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 24px;
    }

    .highlight-box {
        padding: 32px 24px;
    }

    .form-section {
        padding: 40px 24px;
    }

    .footer {
        padding: 40px 24px 20px;
    }

    .footer-content {
        gap: 40px;
    }

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

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

    .service-detail {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 30px;
    }

    .lead-text {
        font-size: 16px;
    }

    .story-content h2 {
        font-size: 24px;
    }

    .story-content p {
        font-size: 16px;
    }

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

    .btn-submit,
    .service-select {
        padding: 12px 20px;
        font-size: 15px;
    }
}
