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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.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: 1rem;
}

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

.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 ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #34495e;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #2980b9;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2980b9;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #2980b9;
}

/* Editorial Container - Main Layout */
.editorial-container {
    min-height: 100vh;
}

.story-flow {
    max-width: 100%;
}

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

/* Hero Section */
.story-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.story-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.lead {
    font-size: 1.35rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

/* Story Sections */
.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a202c;
}

.story-section h3 {
    font-size: 1.65rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-section ul,
.story-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-section li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Visual Contrast Section */
.visual-contrast {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 4rem 0;
}

.inline-image-left {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Insight Block */
.insight-block {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 0;
    margin: 4rem 0;
}

.insight-block h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.insight-block p {
    color: #ecf0f1;
    font-size: 1.15rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonial-embed {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2980b9;
    margin: 2rem 0;
    border-radius: 4px;
}

.testimonial-embed blockquote {
    margin: 0;
}

.testimonial-embed p {
    font-size: 1.15rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}

.testimonial-embed cite {
    font-style: normal;
    color: #718096;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 0;
}

/* CTA Inline */
.cta-inline {
    text-align: center;
    padding: 3rem 0;
}

.cta-inline.secondary {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
}

.cta-inline.final {
    padding: 5rem 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
}

.btn-secondary:hover {
    background: #2980b9;
    color: #ffffff;
}

/* Services Editorial */
.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2980b9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: #2980b9;
    border-width: 3px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #2980b9;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.service-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #2980b9;
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #2980b9;
    color: #2980b9;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select.primary {
    background: #2980b9;
    color: #ffffff;
}

.btn-select.primary:hover {
    background: #1a5a8a;
}

/* Form Section */
.form-section {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 4rem 0 0 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    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: #2980b9;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Urgency Section */
.urgency-section {
    background: #fff3cd;
    padding: 3rem 0;
    margin: 4rem 0;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.urgency-section h2 {
    color: #856404;
}

.urgency-section p {
    color: #856404;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #229954;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #4a5568;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.value-item {
    margin: 3rem 0;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2980b9 0%, #1a5a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    margin: 4rem 0;
}

.stats-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #ecf0f1;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.service-detail-card.featured-service {
    border-color: #2980b9;
    border-width: 3px;
    position: relative;
}

.service-detail-card.premium-service {
    border-color: #9b59b6;
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f4fb 100%);
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 3rem;
    background: #2980b9;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-large.premium {
    background: #9b59b6;
}

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

.service-detail-header h2 {
    font-size: 2rem;
    color: #1a202c;
    margin: 0;
}

.service-price-large {
    text-align: right;
}

.service-price-large .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
}

.service-price-large .price-note {
    display: block;
    font-size: 1rem;
    color: #718096;
    margin-top: 0.25rem;
}

.service-intro {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

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

.detailed-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Comparison Note */
.comparison-note {
    background: #f8f9fa;
    padding: 5rem 0;
    margin: 4rem 0;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 0;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-item a {
    color: #2980b9;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
}

/* Consultation Note */
.consultation-note {
    padding: 4rem 0;
}

/* Map Placeholder */
.map-placeholder {
    padding: 3rem 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.success-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.service-highlight {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.selected-service {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2980b9;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
    margin-bottom: 1.5rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list li strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-note p {
    margin-bottom: 1rem;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.additional-resources {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.additional-resources h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-resources ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.additional-resources li {
    margin-bottom: 0.75rem;
}

/* Legal Page */
.legal-page .page-header {
    padding: 4rem 0 2rem;
}

.legal-date {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
}

.legal-content {
    padding: 3rem 0 5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

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

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

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

    .lead {
        font-size: 1.15rem;
    }

    .story-section h2 {
        font-size: 1.75rem;
    }

    .story-section p,
    .story-section li {
        font-size: 1rem;
    }

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

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

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

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .services-editorial {
        padding: 0 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

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

    .service-price-large {
        text-align: left;
    }

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

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

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

    .sticky-btn {
        text-align: center;
    }

    .thanks-section h1 {
        font-size: 2rem;
    }

    .steps-list li {
        padding-left: 3.5rem;
    }

    .steps-list li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .story-hero {
        padding: 4rem 0 3rem;
    }

    .story-hero h1 {
        font-size: 1.65rem;
    }

    .lead {
        font-size: 1.05rem;
    }

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

    .service-price .price {
        font-size: 1.65rem;
    }

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

    .stat-number {
        font-size: 2.25rem;
    }
}