* {
    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);
}

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

.article-header {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.header-content {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-section {
    padding: 4rem 2rem;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.inline-image {
    margin: 3rem auto;
    max-width: 800px;
}

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

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.insight-block {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.stat-highlight {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-highlight p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.problem-amplification {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.problem-amplification h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.threat-list {
    margin-top: 3rem;
}

.threat-item {
    background-color: #fff5f5;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.threat-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.threat-item p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

.solution-intro {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.solution-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.solution-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.trust-building {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.trust-building h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial blockquote p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.approach-section {
    padding: 4rem 2rem;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.method-steps {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    margin: 0;
}

.section-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.section-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.services-preview > .content-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.service-card.premium-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-card.premium-service h3,
.service-card.premium-service p,
.service-card.premium-service .price {
    color: white;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card.premium-service .select-service {
    background-color: white;
    color: var(--primary-color);
}

.urgency-section {
    padding: 4rem 2rem;
    background-color: #fff5f5;
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.service-display {
    background-color: white;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

#serviceDisplay {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.privacy-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.final-reassurance {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.final-reassurance h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

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

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

.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.featured-service {
    border: 3px solid var(--secondary-color);
}

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

.service-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.service-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-list {
    margin: 1rem 0 1.5rem 1.5rem;
}

.benefit-list li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.savings-note {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.how-it-works {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

.form-section {
    padding: 4rem 2rem;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.guarantee-section {
    padding: 4rem 2rem;
    background-color: #d4edda;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #155724;
}

.guarantee-section p {
    color: #155724;
    font-size: 1.1rem;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

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

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item p {
    margin: 0;
    color: var(--text-dark);
}

.faq-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.location-section {
    padding: 4rem 2rem;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-details {
    margin: 1.5rem 0;
    list-style: none;
}

.location-details li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.parking-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-style: italic;
}

.ready-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.ready-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ready-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.thanks-container {
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-details {
    margin: 3rem 0;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.selected-service-info {
    background-color: #d4edda;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #155724;
}

#selectedServiceDisplay {
    font-weight: 700;
    color: #155724;
}

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

.thanks-actions h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.action-link {
    display: block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.legal-page {
    padding: 3rem 2rem;
}

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

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

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

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 700;
}

.stats-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.value-item p {
    margin: 0;
}

.mission-section,
.team-approach,
.philosophy-section,
.cta-section {
    padding: 4rem 2rem;
}

.mission-section h2,
.team-approach h2,
.philosophy-section h2,
.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .story-section h2,
    .problem-amplification h2,
    .solution-intro h2,
    .trust-building h2,
    .approach-section h2 {
        font-size: 1.6rem;
    }

    .big-number {
        font-size: 3.5rem;
    }

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

    .price-large {
        font-size: 2rem;
    }

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

    .stat-box {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

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

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

@media (max-width: 480px) {
    .content-narrow {
        padding: 0 1.5rem;
    }

    .article-header {
        padding: 3rem 1.5rem 2rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cookie-banner {
        padding: 1rem;
    }
}