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

:root {
    --primary: #1a3a5c;
    --secondary: #2d5f8d;
    --accent: #4a90e2;
    --dark: #0f1e2e;
    --light: #f4f7fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c7a89;
    --border: #dde4ed;
    --success: #27ae60;
    --warning: #f39c12;
}

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

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-year {
    color: var(--accent);
    margin-left: 0.25rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

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

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

.nav-menu a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 30, 46, 0.9) 0%, rgba(26, 58, 92, 0.8) 100%);
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: var(--white);
}

.hero-title-large {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 1rem auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-story {
    font-size: 1.125rem;
    line-height: 1.8;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Split Section */
.section-split-image {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

/* Dark Section */
.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.pillars-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pillar-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Testimony */
.section-testimony {
    background: var(--light);
    padding: 6rem 2rem;
}

.testimony-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-large {
    font-size: 2rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 2rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Offset Section */
.section-offset {
    padding: 6rem 2rem;
}

.offset-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.offset-text {
    flex: 1.2;
}

.offset-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.offset-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.offset-image {
    flex: 0.8;
    transform: translateY(2rem);
}

.offset-image img {
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Insight Section */
.section-insight {
    background: var(--white);
    padding: 6rem 2rem;
}

.insight-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.timeline-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Trust Section */
.section-trust {
    background: var(--light);
    padding: 5rem 2rem;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trust-item h4 {
    font-size: 1.125rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text);
}

/* Services Section */
.section-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.reveal-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.reveal-intro {
    font-size: 1.25rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.services-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    color: var(--accent);
    font-size: 0.875rem;
    border-radius: 4px;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

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

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

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

/* Urgency Section */
.section-urgency {
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
    padding: 4rem 2rem;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

.cta-urgent {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--warning);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Form Section */
.section-form {
    padding: 6rem 2rem;
    background: var(--white);
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.form-modern {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

/* Final CTA */
.section-final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6rem 2rem;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
}

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

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

.sticky-cta-content span {
    font-weight: 600;
    color: var(--text);
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Page Hero */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Content Pages */
.section-content {
    padding: 5rem 2rem;
}

.section-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

.section-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services List Page */
.section-services-list {
    padding: 5rem 2rem;
    background: var(--light);
}

/* Contact Page */
.section-contact {
    padding: 5rem 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-map {
    margin-bottom: 3rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-note {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-note h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
}

.thanks-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.thanks-service {
    background: var(--accent);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Legal Pages */
.section-legal {
    padding: 5rem 2rem;
}

.section-legal h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.section-legal h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.section-legal p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.section-legal li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table th {
    background: var(--light);
    font-weight: 600;
    color: var(--primary);
}

/* CTA Simple */
.section-cta-simple {
    padding: 5rem 2rem;
    background: var(--light);
    text-align: center;
}

.section-cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-cta-simple p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .section-split-image {
        flex-direction: column;
    }

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

    .offset-image {
        transform: translateY(0);
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        margin-bottom: 0.5rem;
    }

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

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

    .hero-title-large {
        font-size: 2.5rem;
    }

    .section-title-center {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 1.5rem;
    }

    .nav-floating {
        padding: 1rem 1.5rem;
    }

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

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

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