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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px 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: 1rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

.logo {
    font-size: 1.4rem;
    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-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

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

.article-hero {
    padding: 3rem 0 2rem;
}

.hero-content-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

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

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

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
}

.first-paragraph {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
    color: #2c3e50;
}

.inline-cta {
    background: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
}

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

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

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

.story-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    padding: 2rem 0 2rem 2rem;
    margin: 2.5rem 0;
    border-left: 3px solid #bdc3c7;
    line-height: 1.6;
}

.article-image-inline {
    margin: 2.5rem 0;
}

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

.highlight-box {
    background: #ecf9f2;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.section-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #2c3e50;
    color: white;
    margin: 4rem -2rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-inline {
    background: #fff8e1;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
}

.key-insight {
    background: #e8f4f8;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.key-insight h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.key-insight p {
    margin-bottom: 1rem;
}

.key-insight strong {
    color: #2c3e50;
}

.section-cta-alternate {
    text-align: center;
    padding: 3rem 0;
    margin: 4rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.section-cta-alternate h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.section-cta-alternate p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

.services-editorial {
    margin: 3rem 0;
}

.service-card {
    background: #f9f9f9;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.service-card.featured h3,
.service-card.featured .service-desc,
.service-card.featured .service-detail,
.service-card.featured .service-price {
    color: white;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.service-detail {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.btn-service {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-card.featured .btn-service {
    background: white;
    color: #667eea;
}

.service-card.featured .btn-service:hover {
    background: #f0f0f0;
}

.form-section {
    background: #f8f9fa;
    padding: 3rem;
    margin: 4rem -2rem;
    border-radius: 8px;
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-privacy {
    margin: 1.5rem 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-privacy a {
    color: #3498db;
}

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

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

.trust-section {
    margin: 4rem 0;
}

.trust-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #333;
}

.testimonial-item span {
    font-size: 0.9rem;
    color: #777;
}

.final-cta {
    text-align: center;
    padding: 4rem 0;
    margin: 4rem 0 2rem;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

@media (max-width: 768px) {
    .editorial-container {
        padding: 0 1.5rem 3rem;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

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

    .article-body {
        font-size: 1.05rem;
    }

    .first-paragraph {
        font-size: 1.1rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .section-cta,
    .form-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

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

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

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.content-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #555;
    margin: 0;
}

.thanks-container {
    text-align: center;
    padding: 5rem 2rem;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-service {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 500px;
}

.thanks-service strong {
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-home:hover {
    background: #2980b9;
}