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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

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

.article-meta {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

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

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

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

p {
    margin-bottom: 1.3rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 0.8rem;
    font-style: italic;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.8rem 2rem;
    margin: 2.5rem 0;
    border-radius: 2px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial {
    border-left: 3px solid #e0e0e0;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #4a4a4a;
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #888;
}

.insight-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.insight-block h3 {
    margin-top: 0;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-primary.large {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
}

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

.btn-secondary:hover {
    background: #6c7a7b;
    transform: translateY(-2px);
}

.urgency-block {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.8rem 2rem;
    margin: 2.5rem 0;
    border-radius: 2px;
}

.urgency-block p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.services-reveal {
    margin-top: 4rem;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-color: #3498db;
}

.service-card .badge {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-includes {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
}

.service-card ul {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.form-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.form-group label {
    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: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.final-cta h2 {
    color: white;
    margin-top: 0;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: white;
    color: #2c3e50;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.96);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    backdrop-filter: blur(10px);
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 3rem 1.5rem 2rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.contact-info,
.services-overview {
    margin-top: 3rem;
}

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

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

.contact-detail .note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

.preparation-tips {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.tip {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.tip h4 {
    margin-top: 0;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.link-card {
    display: block;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

.link-card h4 {
    margin-top: 0;
    color: #2c3e50;
}

.link-card p {
    margin-bottom: 0;
    color: #666;
}

.final-thanks {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.signature {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.service-detail {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-detail.featured-service {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-color: #3498db;
}

.service-detail h3 {
    margin-top: 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0 1.5rem;
}

.process-step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

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

.faq-item h4 {
    margin-top: 0;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.6rem;
}

.legal-page h3 {
    font-size: 1.3rem;
}

.legal-page ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

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

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

.cookie-table tr:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.9rem;
    }

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

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

    .final-cta {
        padding: 2.5rem 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.6rem;
    }

    .editorial-container {
        padding: 2rem 1rem 4rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
    }
}
