* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    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: 2px solid #ffffff;
}

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

.nav-minimal {
    background-color: #ffffff;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo:hover {
    color: #34495e;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-header {
    text-align: center;
    padding: 2rem 0;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.5;
}

.story-image-block {
    margin: 2rem 0;
    width: 100%;
}

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

.story-section {
    padding: 0.5rem 0;
}

.story-section.accent-bg {
    background-color: #f8f9fa;
    padding: 2.5rem 2rem;
    margin: 1rem -2rem;
    border-radius: 8px;
}

.story-section.highlight-box {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    margin-left: 0;
}

.section-heading {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-section p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: #34495e;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
    padding-left: 2rem;
    line-height: 1.6;
}

.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.cta-link-secondary {
    font-size: 1.05rem;
    color: #16a085;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #16a085;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link-secondary:hover {
    color: #138d75;
    border-bottom-color: #138d75;
}

.story-list {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: disc;
}

.story-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.insight-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.insight-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.insight-card p {
    margin: 0;
    font-size: 1rem;
    color: #5a6c7d;
}

.cta-block-inline {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.cta-block-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cta-block-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-section {
    padding: 2rem 0;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.8rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
    margin: 0;
}

.services-pricing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

.service-card.featured {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-subheading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

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

.service-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.form-container {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    margin: 3rem 0;
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    text-align: center;
}

.form-subtext {
    font-size: 1.05rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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;
}

.btn-submit {
    padding: 1.1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.final-cta {
    text-align: center;
    padding: 3rem 0;
}

.urgency-text {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin: 1.5rem 0;
}

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

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.8rem;
}

.text-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

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

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

.thanks-content {
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #d5f4e6;
    padding: 1.2rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #27ae60;
}

.next-steps-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
}

.legal-page {
    max-width: 800px;
}

.legal-list {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ecf0f1;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: 280px;
    }

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

    .contact-card {
        flex: 1;
        min-width: 250px;
    }
}

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

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .story-title {
        font-size: 2rem;
    }

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

    .section-heading {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .story-section.accent-bg {
        margin: 1rem -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

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