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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

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

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

.btn-cookie-reject:hover {
    background: white;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    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;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Editorial Layout (Main Archetype) */
.editorial-layout {
    max-width: 100%;
}

.content-flow {
    width: 100%;
}

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

/* Hero Section */
.article-hero {
    padding: var(--spacing-xl) 2rem var(--spacing-lg);
    background: var(--background-light);
}

.hero-text-wrapper {
    max-width: 820px;
    margin: 0 auto var(--spacing-md);
}

.hero-headline {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.35rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

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

.hero-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sections */
.intro-narrative,
.problem-amplification,
.insight-section,
.trust-building,
.testimonials-flow,
.methodology-deep-dive,
.urgency-section,
.about-snippet,
.faq-editorial,
.booking-form-section,
.final-thought {
    padding: var(--spacing-lg) 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.opening-graf {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.narrow-column p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}

/* Inline Images */
.inline-image-wrapper {
    margin: 2.5rem 0;
}

.inline-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.inline-img-small {
    max-width: 400px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* CTA Inline Block */
.cta-inline-block {
    padding: var(--spacing-md) 0;
}

.cta-card-editorial {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.cta-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-card-editorial p {
    margin-bottom: 1.5rem;
}

.cta-card-editorial.urgency {
    background: var(--accent-color);
    color: white;
    border-left: none;
}

.cta-card-editorial.urgency h3,
.cta-card-editorial.urgency p {
    color: white;
}

/* Buttons and Links */
.btn-text-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.btn-primary-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

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

/* Quotes */
.editorial-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.editorial-quote cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Visual Break */
.visual-break {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.image-grid-editorial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.grid-image {
    flex: 1 1 300px;
}

.grid-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

/* Services Editorial */
.services-editorial {
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
    padding: 0 2rem;
}

.service-item-editorial {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.service-item-editorial.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-age {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

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

.service-visual {
    flex: 0 0 320px;
}

.service-visual img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-editorial {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 6px;
}

.testimonial-editorial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-style: italic;
}

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

/* Methodology */
.methodology-point {
    margin-bottom: 2.5rem;
}

.methodology-point h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

/* Forms */
.contact-form-editorial {
    max-width: 600px;
    margin: 2rem auto;
}

.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: 4px;
    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);
}

.form-group input[readonly] {
    background: var(--background-light);
    color: var(--text-light);
}

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

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Closing Graf */
.closing-graf {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 2rem var(--spacing-md);
    margin-top: var(--spacing-xl);
}

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

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section p {
    font-size: 0.95rem;
    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 ease;
}

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

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

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

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

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

.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Services Page */
.services-page {
    min-height: 100vh;
}

.page-header {
    padding: var(--spacing-xl) 2rem var(--spacing-lg);
    background: var(--background-light);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.service-card-full {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-full.reverse {
    flex-direction: row-reverse;
}

.service-card-content {
    flex: 1;
    padding: 2.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-details,
.service-outcomes {
    margin-bottom: 2rem;
}

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

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

.service-details li,
.service-outcomes li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-details li:before,
.service-outcomes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.service-card-image {
    flex: 0 0 400px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-cta-section {
    padding: var(--spacing-lg) 2rem;
    background: var(--background-light);
}

/* About Page */
.about-page {
    min-height: 100vh;
}

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

.story-section,
.philosophy-section,
.team-section,
.approach-section,
.impact-section,
.future-section,
.cta-section-about {
    padding: var(--spacing-lg) 0;
}

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

.belief-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 250px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.approach-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-dark);
}

.cta-section-about {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
    border-radius: 8px;
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
}

.contact-info-section {
    padding: var(--spacing-lg) 2rem;
    background: var(--background-light);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1 1 300px;
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

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

.contact-details-section,
.faq-contact-section,
.alternative-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.expectation-list,
.link-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.expectation-list li,
.link-list li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.link-list {
    list-style: none;
    padding-left: 0;
}

.link-list li a {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.lead-thanks {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--success-color);
    margin: 2rem 0;
    display: none;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.05rem;
}

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

.next-steps {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.next-steps li {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.thanks-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: var(--spacing-lg) 2rem;
}

.legal-page .narrow-column {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

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

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

.legal-section ul,
.legal-section ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

.cookies-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-medium);
}

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

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

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .service-item-editorial,
    .service-item-editorial.reverse {
        flex-direction: column;
    }

    .service-visual {
        flex: 1;
        width: 100%;
    }

    .image-grid-editorial {
        flex-direction: column;
    }

    .service-card-full,
    .service-card-full.reverse {
        flex-direction: column;
    }

    .service-card-image {
        flex: 1;
        height: 300px;
    }

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

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

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

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

    .sticky-cta {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(100px);
    }

    .sticky-cta.show {
        transform: translateX(-50%) translateY(0);
    }

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

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .narrow-column {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

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

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