:root {
    --primary-color: #1a2332;
    --secondary-color: #2d5a8c;
    --accent-color: #4a90e2;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

* {
    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: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-accept {
    background-color: var(--accent-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #357abd;
}

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

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

.editorial-nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-intro {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 32px;
}

section {
    margin-bottom: 48px;
}

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

h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

h4 {
    font-size: 19px;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 32px 0;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 32px;
}

.inline-cta-soft {
    padding: 24px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
}

.inline-cta-soft p {
    margin: 0;
}

.text-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.text-link:hover {
    color: var(--secondary-color);
}

.text-link-large {
    font-size: 19px;
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.insight-block {
    margin: 48px 0;
}

.insight-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 36px;
    border-radius: 6px;
}

.insight-box h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 20px;
}

.insight-box p {
    color: white;
    margin-bottom: 12px;
    font-size: 18px;
}

.inline-cta-medium {
    margin: 48px 0;
}

.cta-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 6px;
    text-align: center;
}

.cta-card h3 {
    margin-bottom: 16px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.numbered-section {
    margin: 40px 0;
}

.number-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

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

.number-content {
    flex: 1;
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 6px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    text-align: right;
}

.reality-list {
    margin: 24px 0;
    padding-left: 24px;
}

.reality-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

ul {
    margin: 20px 0;
    padding-left: 28px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.value-item {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 4px;
}

.value-item h4 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.pricing-reveal {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.pricing-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-packages {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.package {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.package.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.package-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.package-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.package-select {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-select:hover {
    background-color: var(--secondary-color);
}

.package.featured .package-select {
    background-color: var(--secondary-color);
}

.package.featured .package-select:hover {
    background-color: var(--primary-color);
}

.urgency-soft {
    background-color: #fff8e1;
    padding: 20px 24px;
    border-left: 4px solid var(--warning-color);
    margin: 40px 0;
}

.calculator-section {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.calculator-intro {
    margin-bottom: 32px;
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.cost-column {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
}

.cost-column.highlight {
    border-color: var(--success-color);
    background-color: #f0f9f4;
}

.cost-column h4 {
    margin-bottom: 16px;
}

.cost-detail {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cost-result {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.savings-highlight {
    color: var(--success-color);
    font-weight: 600;
    font-size: 18px;
}

.calculator-conclusion {
    font-size: 18px;
    text-align: center;
    margin-top: 32px;
}

.final-trust {
    margin: 60px 0;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 4px;
}

.form-section {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    margin: 60px 0;
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

.final-cta {
    text-align: center;
    padding: 40px 0;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

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

.sticky-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--success-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

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

.page-intro {
    font-size: 19px;
    color: var(--text-light);
}

.services-page .service-detail {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.service-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 0;
}

.service-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: var(--secondary-color);
}

.featured-service {
    position: relative;
}

.service-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

.services-cta {
    text-align: center;
    padding: 48px 0;
}

.about-page .about-story {
    margin-bottom: 60px;
}

.about-image {
    width: 100%;
    border-radius: 6px;
    margin: 32px 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.value-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.value-box h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.cert-list {
    margin: 24px 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 6px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

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

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

.testimonial-block {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.team-cta {
    text-align: center;
    padding: 48px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.contact-page .contact-info {
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

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

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

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.method-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.faq-contact {
    margin-top: 60px;
}

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

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.emergency-contact {
    background-color: #fff8e1;
    padding: 28px;
    border-radius: 6px;
    border-left: 4px solid var(--warning-color);
    margin-top: 48px;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.selected-service-info {
    font-size: 17px;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.steps-list {
    list-style: decimal;
    text-align: left;
    padding-left: 24px;
}

.thanks-tips {
    background-color: #e3f2fd;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    margin: 32px 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.secondary-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--accent-color);
    color: white;
}

.thanks-contact {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.legal-page .legal-content {
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 21px;
    margin-top: 32px;
}

.legal-page ul {
    margin: 20px 0;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .editorial-nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

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

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .form-section {
        padding: 32px 20px;
    }

    .package-price {
        font-size: 28px;
    }

    .cost-result {
        font-size: 26px;
    }
}

@media (min-width: 769px) {
    .cost-comparison {
        flex-direction: row;
    }

    .cost-column {
        flex: 1;
    }

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

    .value-item {
        flex: 1 1 calc(50% - 12px);
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 10px);
    }

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

    .contact-item {
        flex: 1 1 calc(50% - 16px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}