* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #28a745;
    --warning-color: #fbbf24;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-main {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

.btn-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.split-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

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

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.scenario-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.scenario-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.scenario-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.scenario-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scenario-text {
    padding: 25px;
}

.scenario-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.scenario-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.process-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.process-visual {
    flex: 1.5;
}

.process-cta {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

.process-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.process-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
}

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

.services-pricing {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 30px;
    background-color: var(--bg-light);
}

.service-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.service-body {
    padding: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

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

.service-features li:last-child {
    border-bottom: none;
}

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

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

.testimonial-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonial-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
}

.main-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

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

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 80px 0;
    background-color: var(--text-dark);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large-white {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-large-white:hover {
    transform: translateY(-2px);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.split-content img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    text-align: center;
}

.stats-display {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-large {
    display: flex;
    flex-direction: column;
    color: white;
}

.stat-large .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
}

.stat-large .stat-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-team {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.approach-number {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.approach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-why {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-right {
    flex: 1;
    position: relative;
}

.price-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-price {
    background-color: var(--success-color);
}

.popular-badge {
    display: inline-block;
    background-color: var(--warning-color);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-right h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.detail-list {
    list-style: none;
    margin-bottom: 20px;
}

.detail-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

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

.service-note {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.services-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

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

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

.comparison-table .highlighted-row {
    background-color: #eff6ff;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-method {
    margin-bottom: 35px;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.8;
}

.method-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
}

.contact-faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.contact-cta {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.thanks-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.thanks-step {
    flex: 1;
    max-width: 250px;
}

.thanks-step .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.thanks-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.thanks-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-service-info {
    background-color: #eff6ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-support {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-support h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content,
    .split-content,
    .process-split,
    .testimonials-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .stats-display {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .section-intro,
    h2 {
        font-size: 1.8rem;
    }

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

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

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