/* 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.6;
    color: #1f2937;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.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;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: #374151;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #2563eb;
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: #ffffff !important;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: #1d4ed8;
}

/* Hero Split Section */
.hero-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left, .hero-right {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    width: 100%;
    max-width: 600px;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Insight Section */
.insight-section {
    padding: 3rem 2rem;
    background: #1e40af;
    color: #ffffff;
}

.insight-text {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 5rem 2rem;
    background: #ffffff;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.problem-left, .problem-right {
    flex: 1;
}

.problem-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.problem-right p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    margin-top: 2rem;
}

.insight-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
}

.insight-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.25rem;
}

.visual-card svg {
    width: 100%;
    max-width: 400px;
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.story-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

.story-section p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header-split {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-split h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-split p {
    font-size: 1.125rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.service-card.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.75rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #1d4ed8;
}

.service-card.selected .btn-service {
    background: #10b981;
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

.benefits-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-number {
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.visual-stats svg {
    width: 100%;
    max-width: 400px;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 1rem 2rem;
    display: none;
    z-index: 99;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar.show {
    display: block;
}

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

.sticky-cta-content span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-sticky {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-sticky:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    color: #d1d5db;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Page Hero */
.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

/* About Sections */
.about-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.about-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.visual-element svg {
    width: 100%;
    max-width: 500px;
}

.values-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.375rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.team-section p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.approach-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.approach-right p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    counter-reset: approach-counter;
    margin-top: 2rem;
}

.approach-list li {
    counter-increment: approach-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
}

.approach-list li:before {
    content: counter(approach-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.visual-approach svg {
    width: 100%;
    max-width: 400px;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #2563eb;
}

.cta-section .btn-primary:hover {
    background: #f3f4f6;
}

/* Services Detail */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-left h3,
.service-detail-right h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 600;
}

.detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.detail-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.detail-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-meta {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.meta-item {
    font-size: 1rem;
    color: #374151;
}

.meta-item strong {
    color: #111827;
}

.service-detail-left svg,
.service-detail-right svg {
    width: 100%;
    max-width: 400px;
}

/* Contact Page */
.contact-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.contact-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: #2563eb;
    transition: color 0.2s;
}

.contact-info-block a:hover {
    color: #1d4ed8;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

.visual-contact svg {
    width: 100%;
    max-width: 500px;
}

.map-placeholder {
    padding: 3rem 2rem;
    background: #f9fafb;
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-box svg {
    width: 100%;
    height: auto;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: #ffffff;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 200px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: auto;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-selected {
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #1e40af;
}

.thanks-next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 600;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Legal Pages */
.legal-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 2.75rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.375rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

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

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

.cookie-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.cookie-table td {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 968px) {
    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .split-content.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .nav-right {
        display: none;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-split {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

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

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

    .contact-form {
        padding: 2rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-left h1 {
        font-size: 1.875rem;
    }

    .section-header-split h2 {
        font-size: 2rem;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
