/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

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

.btn-accept {
    background: #10b981;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #000;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: -0.03em;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: #333;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Editorial Main Container */
.editorial-main {
    background: #fff;
    max-width: 100%;
    margin: 0;
}

/* Hero Sections */
.article-hero {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    border-bottom: 1px solid #e5e5e5;
}

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

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

.hero-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
    margin-top: 2rem;
}

.meta-divider {
    color: #ccc;
}

/* Story Content - Narrow Column */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    padding: 3rem 0;
}

.intro-paragraph {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 4.5rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: #2563eb;
}

/* Images - Full Width and Offset */
.story-image-full {
    margin: 4rem 0;
    width: 100%;
}

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

.story-image-full figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    padding: 1rem 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.story-image-offset {
    padding: 4rem 0;
}

.image-offset-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.image-offset-layout img {
    flex: 1;
    width: 50%;
    height: auto;
}

.offset-caption {
    flex: 1;
    font-size: 1.1rem;
    color: #444;
}

/* Blockquotes */
.quote-standout {
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: #f8f9fa;
    font-size: 1.3rem;
    font-style: italic;
    color: #222;
    line-height: 1.6;
}

/* Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.custom-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.story-list-visual h3 {
    margin-bottom: 1.5rem;
}

/* Emphasis Box */
.emphasis-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.emphasis-box p {
    margin: 0;
    color: #78350f;
}

/* Inline CTAs */
.inline-cta-subtle {
    padding: 3rem 0;
}

.cta-box-inline {
    background: #f1f5f9;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box-inline h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.btn-text-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Testimonials */
.testimonial-inline {
    padding: 3rem 0;
    background: #f8f9fa;
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: #fff;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: #0a0a0a;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Services Section */
.services-preview {
    padding: 4rem 0;
    background: #fafafa;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-editorial {
    background: #fff;
    padding: 2.5rem 2rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.7rem;
    color: #0a0a0a;
}

.service-card-editorial p {
    color: #444;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-features span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #475569;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Helvetica Neue', sans-serif;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.btn-service {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

/* Forms */
.form-section-editorial {
    padding: 4rem 0;
    background: #fff;
}

.form-intro {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.editorial-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 280px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
}

.btn-submit {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Helvetica Neue', sans-serif;
}

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

/* Final CTA */
.final-cta-editorial {
    background: #1e293b;
    color: #fff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.final-cta-editorial h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta-editorial p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

/* Footer */
.footer-minimal {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #999;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-column a {
    color: #999;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1e293b;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-sticky {
    background: #10b981;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #059669;
    text-decoration: none;
}

/* About Page Specific */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero h1,
.about-hero .lead-text {
    color: #fff;
}

.methodology-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.method-box {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

.method-box h3 {
    color: #667eea;
    margin-top: 0;
}

.cta-section-about {
    padding: 4rem 0;
    background: #fafafa;
}

.cta-box-centered {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
}

.cta-box-centered h2 {
    color: #fff;
}

.cta-box-centered p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Services Page Specific */
.services-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.services-hero h1,
.services-hero .lead-text {
    color: #fff;
}

.services-detail-section {
    padding: 4rem 0;
}

.service-detail-card {
    background: #fff;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 3px solid #2563eb;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.service-price-large {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-direction: column;
}

.price-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    font-family: 'Helvetica Neue', sans-serif;
}

.price-currency {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

.service-description {
    padding: 2.5rem 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.service-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-service-select {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.featured-service {
    border: 3px solid #10b981;
}

.featured-service .service-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-bottom: none;
}

.featured-service .service-header h2,
.featured-service .price-number,
.featured-service .price-currency {
    color: #fff;
}

.exclusive-badge {
    background: #fef3c7;
    color: #78350f;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    font-size: 0.95rem;
}

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

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.contact-hero h1,
.contact-hero .lead-text {
    color: #fff;
}

.contact-section {
    padding: 4rem 0;
    background: #fafafa;
}

.contact-info-boxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: #444;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

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

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

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #555;
}

.info-box-highlight {
    background: #f1f5f9;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

.info-box-highlight h3 {
    margin-top: 0;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

.thanks-hero {
    padding: 5rem 0;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 2rem auto;
}

.selected-service-info {
    margin: 2rem 0;
}

.service-confirmation {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.service-confirmation h3 {
    color: #059669;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.selected-service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #065f46;
    margin: 0;
}

.next-steps-box {
    background: #fafafa;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.next-steps-box h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-text h3 {
    margin: 0 0 0.5rem 0;
}

.step-text p {
    margin: 0;
    color: #555;
}

.thanks-cta-section {
    margin: 4rem 0;
    text-align: center;
}

.thanks-cta-section h2 {
    margin-bottom: 1rem;
}

.thanks-cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

.thanks-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

.contact-reminder {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.contact-reminder p {
    margin: 0.5rem 0;
}

/* Legal Pages */
.legal-page {
    background: #fff;
}

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

.legal-content h2 {
    color: #2563eb;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 2px solid #f1f5f9;
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookies-table tr:hover {
    background: #fafafa;
}

.closing-thought {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

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

    .content-narrow {
        padding: 0 1.5rem;
    }

    .image-offset-layout {
        flex-direction: column;
    }

    .image-offset-layout img {
        width: 100%;
    }

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

    .form-row .form-group {
        min-width: 100%;
    }

    .service-header {
        flex-direction: column;
    }

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

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

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

    .sticky-cta-content {
        justify-content: space-between;
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-boxes {
        flex-direction: column;
    }

    .thanks-cta-buttons {
        flex-direction: column;
    }

    .price-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

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

    .quote-standout {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .btn-primary-large,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}