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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.top-nav {
    background: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text-center h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.hero-image-wrapper {
    width: 100%;
    margin: 40px 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-narrow {
    margin-bottom: 50px;
}

.content-narrow h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 17px;
}

.content-narrow ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.content-narrow li {
    margin-bottom: 10px;
    font-size: 17px;
}

.article-image {
    margin: 40px 0;
}

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

.inline-cta {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.cta-link,
.cta-link-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-link-secondary {
    background: #95a5a6;
}

.cta-link-secondary:hover {
    background: #7f8c8d;
}

.testimonial-inline {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 30px;
    margin: 50px 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 18px;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 15px;
}

.benefit-list {
    background: #fff;
    border: 1px solid #e1e8ed;
    padding: 25px 25px 25px 45px;
    border-radius: 8px;
    margin: 30px 0;
}

.services-editorial {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    border: 2px solid #e1e8ed;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.service-cta {
    display: inline-block;
    padding: 12px 25px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #2980b9;
}

.editorial-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 50px 0;
}

.disclaimer {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.final-cta-section {
    text-align: center;
    background: #ecf0f1;
    padding: 50px 30px;
    border-radius: 8px;
    margin: 60px 0;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: #c0392b;
}

.references-section {
    margin: 60px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style: decimal;
    margin-left: 25px;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

.cta-inline-about {
    background: #3498db;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-inline-about h3 {
    color: #fff;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ecf0f1;
}

.services-detailed {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.featured-service {
    border-color: #f39c12;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
}

.service-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0;
}

.service-savings {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-body ul {
    margin: 20px 0 30px 25px;
}

.btn-service {
    display: inline-block;
    padding: 14px 30px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e8ed;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.final-cta-services {
    text-align: center;
    padding: 40px;
    background: #ecf0f1;
    border-radius: 8px;
    margin: 50px 0;
}

.btn-contact {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-image-section {
    flex: 1;
    min-width: 300px;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.next-steps {
    margin-top: 60px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.cookie-table {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-table h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cookie-table ul {
    list-style: none;
    margin-left: 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text-center h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}