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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

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

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

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

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

.nav-minimal {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

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

.editorial-hero {
    margin-bottom: 3rem;
}

.hero-text-narrow {
    margin-bottom: 2rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    margin: 2rem 0;
}

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

.editorial-text {
    margin-bottom: 3rem;
}

.editorial-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.editorial-text h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.editorial-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.cta-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-color);
}

.cta-text:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.editorial-insight {
    margin: 4rem 0;
}

.editorial-insight h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-image {
    margin: 2rem 0;
}

.insight-image img {
    width: 100%;
    border-radius: 8px;
}

.editorial-story {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.editorial-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-breakdown {
    margin: 2rem 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.breakdown-label {
    font-weight: 600;
}

.breakdown-old {
    text-decoration: line-through;
    color: var(--text-light);
}

.breakdown-new {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1.1rem;
}

.inline-cta-box {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--accent-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-box p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #c0392b;
    text-decoration: none;
    transform: translateY(-2px);
}

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

.service-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0.1) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-includes span {
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

.service-price {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note,
.price-comparison {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.editorial-trust h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.editorial-method {
    margin: 4rem 0;
}

.editorial-method h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-method p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.method-points {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.method-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.method-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.editorial-cta-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.editorial-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.editorial-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    margin: 2rem auto 0;
    max-width: 600px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.urgency-box {
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.urgency-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #fff;
    text-decoration: none;
}

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

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

.inline-image img {
    width: 100%;
    border-radius: 8px;
}

.philosophy-point {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.philosophy-point h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-point p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-details {
    margin: 1.5rem 0;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-ideal {
    padding: 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 4px;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-method p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

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

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    margin: 2rem 0;
}

.selected-service-info {
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.thanks-tips {
    margin: 3rem 0;
    text-align: left;
}

.thanks-tips h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.thanks-tips > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tip-item {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tip-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.tip-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thanks-back {
    margin: 2rem 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .form-row {
        flex-direction: row;
    }

    .nav-toggle {
        display: none;
    }

    .hero-text-narrow h1 {
        font-size: 3rem;
    }

    .team-stats {
        flex-direction: row;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-method {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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