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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Editorial Main Layout */
.editorial-main {
    background-color: #fafafa;
    padding: 3rem 1.5rem;
}

.editorial-article {
    max-width: 680px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.header-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

/* Article Image */
.article-image {
    margin: 2.5rem 0;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.article-image-small {
    margin: 2rem auto;
    max-width: 500px;
}

/* Article Sections */
.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.article-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

.article-section p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a3a3a;
}

.article-section ul {
    margin: 1.25rem 0 1.25rem 1.5rem;
}

.article-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Insight Blocks */
.insight-block {
    background-color: #f8f8f8;
    border-left: 3px solid #1a1a1a;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.insight-block p {
    margin-bottom: 0;
}

/* Inline CTA */
.inline-cta {
    background-color: #fef9e7;
    border: 1px solid #f4d03f;
    padding: 1.75rem;
    margin: 2.5rem 0;
    text-align: center;
}

.inline-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.05rem;
}

.cta-link:hover {
    text-decoration: none;
}

/* Testimonials */
.testimonial-section {
    margin: 3rem 0;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e0e0e0;
}

.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #5a5a5a;
}

/* Services Section */
.services-section {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin: 1.5rem 0;
    transition: box-shadow 0.2s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 3px;
    width: 100%;
}

.select-service:hover {
    background-color: #333333;
}

.select-service.selected {
    background-color: #27ae60;
}

.select-service.selected:hover {
    background-color: #229954;
}

/* Form Section */
.form-section {
    margin: 3rem 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.cta-button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 3px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background-color: #333333;
}

.cta-button-secondary {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 3px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Final CTA */
.final-cta {
    background-color: #f0f0f0;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.final-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

.contact-block {
    background-color: #f8f8f8;
    padding: 1.75rem;
    margin: 1.5rem 0;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.75rem;
}

/* Legal Content */
.legal-content {
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.2rem;
}

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

.footer-container {
    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: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-column a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #909090;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    border-radius: 3px;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #c0392b;
}

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

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

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

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

    .header-intro {
        font-size: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .editorial-main {
        padding: 1.5rem 0.75rem;
    }

    .editorial-article {
        padding: 1.5rem 1rem;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}