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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #0a0a0a;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1976D2;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

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

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Navigation */
.nav-top {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0a0a0a;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: #1976D2;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1976D2;
    text-decoration: none;
}

/* Editorial Layout - Article-like structure */
.editorial-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-editorial {
    padding: 4rem 2rem 2rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #5a5a5a;
    font-weight: 400;
    max-width: 680px;
}

/* Typography Variations */
.intro-text {
    font-size: 1.3rem;
    line-height: 1.65;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

/* Images */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    border-radius: 4px;
}

.full-width-image {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.full-width-image img {
    width: 100%;
    border-radius: 4px;
}

/* Quotes */
.editorial-quote {
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #3a3a3a;
    border-left: 4px solid #1976D2;
    padding-left: 2rem;
    margin: 2.5rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    padding-left: 2rem;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #6a6a6a;
}

.blockquote {
    font-style: italic;
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-left: 4px solid #1976D2;
}

/* Strategy Blocks */
.strategy-block {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
}

.strategy-block h3 {
    margin-top: 0;
    color: #1976D2;
}

/* Highlight Box */
.highlight-box {
    background-color: #e3f2fd;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    border-left: 4px solid #1976D2;
}

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

/* CTA Boxes */
.inline-cta-box {
    background-color: #1976D2;
    color: #ffffff;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.cta-box {
    background-color: #f5f5f5;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Inline Link CTA */
.inline-link-cta {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1976D2;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.inline-link-cta:hover {
    color: #0d47a1;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #1976D2;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0d47a1;
    text-decoration: none;
    color: #ffffff;
}

.btn-primary-large {
    display: inline-block;
    background-color: #1976D2;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary-large:hover {
    background-color: #0d47a1;
    text-decoration: none;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

.btn-select-service {
    background-color: #2E7D32;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1b5e20;
}

/* Services */
.service-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 1rem 0;
}

.service-detail {
    padding: 2.5rem 0;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 1rem 0 1.5rem;
}

.service-features {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

/* Forms */
.form-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s;
}

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

.form-intro {
    color: #5a5a5a;
    margin-bottom: 2rem;
}

/* FAQ */
.faq-item {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    color: #1976D2;
}

/* Testimonials */
.testimonial-block {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #2E7D32;
    font-style: italic;
}

.testimonial-block p {
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #4a4a4a;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.final-cta-section h2 {
    color: #ffffff;
    margin-top: 0;
}

.final-cta-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
}

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

.contact-item {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-note {
    color: #6a6a6a;
    font-size: 0.95rem;
}

.contact-info-note {
    background-color: #e3f2fd;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.process-list {
    margin-left: 2rem;
}

.process-list li {
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.privacy-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
}

.privacy-note p {
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem auto;
    max-width: 500px;
    border-radius: 4px;
    text-align: left;
}

.thanks-details h2 {
    margin-top: 0;
    text-align: center;
}

.next-steps {
    margin: 3rem auto;
    text-align: left;
}

.step-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.step-item h3 {
    margin-top: 0;
    color: #1976D2;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0;
}

.thanks-contact {
    background-color: #e3f2fd;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 4px;
}

.thanks-contact h3 {
    margin-top: 0;
}

/* Legal Pages */
.legal-content {
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content h1 {
    font-size: 2.2rem;
}

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

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

.last-updated {
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie {
    background-color: #2E7D32;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie:hover {
    background-color: #1b5e20;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #8a8a8a;
    margin: 0;
}

/* Utility */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .content-narrow {
        padding: 2rem 1rem;
    }

    .hero-editorial {
        padding: 2rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .editorial-quote {
        font-size: 1.15rem;
        padding: 1.5rem;
    }

    .inline-cta-box {
        padding: 2rem 1.5rem;
    }

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

    .service-price-large {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .thanks-actions {
        width: 100%;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}