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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

blockquote.testimonial-inline {
    border-left: 4px solid var(--secondary-color);
    padding: 24px 30px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 16px;
}

.cta-inline {
    text-align: center;
    margin: 40px 0;
}

.cta-link {
    font-size: 19px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.insight-box {
    background-color: #f8f9fa;
    padding: 28px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
    margin-top: 0;
    color: var(--primary-color);
}

.insight-box p {
    margin-bottom: 0;
    font-size: 17px;
}

.cta-section-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-section-inline h3 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 0;
    color: white;
}

.cta-section-inline p {
    font-size: 18px;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border: 2px solid var(--border-color);
    padding: 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.case-story {
    background-color: var(--bg-light);
    padding: 28px;
    margin: 24px 0;
    border-radius: 8px;
}

.case-story h3 {
    font-size: 21px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--primary-color);
}

.case-story p {
    margin-bottom: 0;
    font-size: 17px;
}

.urgency-section {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 36px;
    text-align: center;
    border-radius: 10px;
    margin: 50px 0;
}

.urgency-section h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.urgency-section p {
    font-size: 17px;
    margin-bottom: 24px;
}

.btn-urgency {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-thought {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
}

.final-thought h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.final-thought p {
    font-size: 18px;
    margin-bottom: 16px;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.5);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 24px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.team-member {
    margin-bottom: 35px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-member p {
    margin-bottom: 10px;
}

.team-member p strong {
    color: var(--secondary-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background-color: var(--bg-light);
    padding: 28px 20px;
    border-radius: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.services-detailed {
    margin-top: 50px;
}

.service-detail {
    background-color: white;
    border: 2px solid var(--border-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
}

.featured-service {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h3 {
    font-size: 26px;
    margin: 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-intro {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-style: italic;
}

.service-detail h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-detail ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-detail ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 16px;
}

.contact-info-section {
    margin-bottom: 50px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    background-color: var(--bg-light);
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.expectation-item {
    margin-bottom: 32px;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-section {
    text-align: center;
    padding: 60px 0;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.next-steps {
    margin-top: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
}

.step-content p {
    margin-bottom: 0;
    font-size: 16px;
}

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 24px;
}

.while-you-wait {
    margin-top: 60px;
    text-align: left;
}

.while-you-wait h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.resource-item {
    background-color: var(--bg-light);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.resource-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
    color: var(--primary-color);
}

.resource-item p {
    margin-bottom: 0;
    font-size: 16px;
}

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

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 16px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .story-section h2 {
        font-size: 26px;
    }

    .story-section p {
        font-size: 16px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        flex-direction: column;
    }

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

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

    .step-item {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}