/* Base Styles & Variables */
:root {
    --bg-main: #FDFCF8;
    --bg-light: #F6F5F0;
    --bg-olive-light: #EBEFE7;
    --text-main: #2C2D2B;
    --text-muted: #666764;
    --primary-color: #556B49;
    --primary-hover: #45573B;
    --border-color: #E2DFD8;
    --white: #FFFFFF;
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 16px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; font-family: var(--font-body); font-weight: 600; }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-header.center {
    text-align: center;
    margin-bottom: 50px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--white);
}

.btn-phone {
    background: linear-gradient(135deg, rgba(44, 45, 43, 0.7) 0%, rgba(44, 45, 43, 0.2) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-phone:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(44, 45, 43, 0.8) 0%, rgba(44, 45, 43, 0.3) 100%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-phone .phone-number {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-phone .phone-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.2;
    margin-top: 2px;
}

.w-100 {
    width: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-number {
    font-weight: 700;
    font-size: 1.1rem;
}

.phone-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(253,252,248,0.95) 0%, rgba(253,252,248,0.85) 40%, rgba(253,252,248,0) 100%);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust i {
    color: #D3A970;
}

/* Pain Points Section */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pain-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.pain-card h3 {
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* About Bankruptcy */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Test Banner */
.test-banner {
    background-color: var(--bg-olive-light);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.test-banner-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.badge {
    background-color: rgba(255,255,255,0.6);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.test-banner-content h2 {
    margin-bottom: 16px;
}

.test-banner-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.small-text {
    font-size: 0.85rem !important;
    margin-top: 16px;
    margin-bottom: 0 !important;
}

.test-banner-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
}

/* Anna's Story */
.anna-story {
    background-color: var(--bg-main);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.story-image img {
    border-radius: 12px;
}

.story-content h2 {
    margin-bottom: 8px;
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.quote {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    position: relative;
}

.quote i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: 20px;
}

.quote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-main);
    font-weight: 500;
}

/* Stages */
.stages-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 20px;
}

.stage-item {
    text-align: center;
    width: 15%;
    position: relative;
    z-index: 2;
    cursor: default;
}

.stage-item:hover .stage-icon {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(85, 107, 73, 0.2);
}

.stage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stage-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stage-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.stage-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stage-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    margin-top: 30px;
    border-top: 2px dashed var(--border-color);
    background: transparent;
}

/* Confidentiality */
.conf-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 50px;
}

.conf-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.conf-text h2 {
    margin-bottom: 16px;
}

.conf-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.conf-features {
    display: flex;
    gap: 40px;
}

.conf-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.conf-feature i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.conf-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.result-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.result-stats p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.client-quote {
    font-style: italic;
    color: var(--text-muted);
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* Footer & Form */
.footer {
    background-color: var(--bg-light);
}

.cta-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    background-color: var(--bg-olive-light);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 40px;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-features {
    display: flex;
    gap: 20px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-features i {
    color: var(--primary-color);
}

.cta-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-form input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-disclaimer a {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-main);
    margin: auto;
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-main);
}

.quiz-header {
    margin-bottom: 30px;
}

.progress-bar {
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-top: 16px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quiz-form input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: var(--transition);
    background-color: var(--bg-main);
    font-family: var(--font-body);
}

.quiz-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(85, 107, 73, 0.1);
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* Intro Animations */
@keyframes introFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes introSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes introSlideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.header {
    animation: introSlideDown 0.6s ease-out forwards;
}

.hero-bg {
    opacity: 0;
    animation: introFadeIn 0.8s ease-out forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: introSlideUp 0.5s ease-out 0.1s forwards;
}

.hero-content p {
    opacity: 0;
    animation: introSlideUp 0.5s ease-out 0.2s forwards;
}

.hero-actions {
    opacity: 0;
    animation: introSlideUp 0.5s ease-out 0.3s forwards;
}

.hero-trust {
    opacity: 0;
    animation: introSlideUp 0.5s ease-out 0.4s forwards;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.3s ease;
    z-index: 900;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-100px); /* Initially hidden offscreen */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-sidebar.visible {
    transform: translateY(-50%) translateX(0);
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateX(5px);
    background-color: var(--primary-color);
    color: var(--white);
}

.quiz-form-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.5;
}

.quiz-step h4 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    padding: 16px 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-olive-light);
}

.quiz-result-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* Responsive */
/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-content a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.mobile-nav-phone {
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-top: 20px;
}

.close-mobile-nav {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Media Queries */
@media (max-width: 1024px) {
    .pain-grid, .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .story-grid, .cta-banner {
        grid-template-columns: 1fr;
    }
    .test-banner {
        flex-direction: column;
        text-align: center;
    }
    .test-banner-image {
        position: relative;
        right: auto;
        transform: none;
        margin-top: 30px;
    }
    .stages-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .stage-item {
        width: 100%;
        max-width: 300px;
    }
    .stage-line {
        display: none;
    }
    .conf-banner {
        flex-direction: column;
        text-align: center;
    }
    .conf-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .header {
        padding: 15px 0;
    }
    .main-nav, .contact-header {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding-top: 100px;
        min-height: auto;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .pain-grid, .results-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-bg img {
        object-position: 70% center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    .quiz-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .result-header {
        flex-direction: column;
        text-align: center;
    }
}
