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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --light-accent: #f07b3f;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a2332;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-story {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-story h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
}

.content-flow {
    padding: 4rem 2rem;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-text.centered {
    text-align: center;
}

.opening-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.narrow-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.narrow-text h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.narrow-text h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.inline-cta.centered {
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 84, 85, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 84, 85, 0.3);
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.stat-highlight {
    background: var(--bg-light);
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visual-break {
    width: 100%;
    margin: 3rem 0;
}

.image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
}

.dark-bg .narrow-text p,
.dark-bg .narrow-text h2,
.dark-bg .narrow-text h3 {
    color: var(--white);
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.insight-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.insight-block h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.testimonial-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.timeline-block {
    margin: 3rem 0;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 120px;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.timeline-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
}

.urgency-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
    color: var(--white);
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.services-reveal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

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

.checkbox-group a {
    color: var(--accent-color);
}

.submit-button {
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 84, 85, 0.3);
}

.final-push {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    color: var(--white);
}

.final-push h2 {
    color: var(--white);
}

.final-push p {
    font-size: 1.2rem;
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column 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);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 1rem 2rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.sticky-cta-button {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

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

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

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

.cookie-accept:hover {
    background: var(--light-accent);
}

.cookie-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cookie-reject:hover {
    border-color: var(--text-dark);
}

.page-header {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content,
.services-page,
.contact-page,
.legal-page {
    padding: 4rem 2rem;
    min-height: 50vh;
}

.content-wrapper,
.legal-container,
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.services-intro {
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-detail-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-detail-card.featured-service {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-detail-card .service-header {
    padding: 2rem;
    background: var(--bg-light);
}

.service-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.service-body {
    padding: 2rem;
    flex: 1;
}

.service-body h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.service-body ul {
    list-style: none;
    margin: 1rem 0;
}

.service-body li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-body li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--success-color);
    font-size: 0.95rem;
}

.service-footer {
    padding: 2rem;
    background: var(--bg-light);
}

.services-guarantee {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
}

.services-guarantee h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.services-cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

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

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

.contact-note a {
    color: var(--accent-color);
}

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

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

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

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 2rem 0 0.5rem;
}

.legal-container p,
.legal-container ul,
.legal-container ol {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

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

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

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

.thanks-section {
    padding: 6rem 2rem 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.selected-service-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

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

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

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

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

.thanks-footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-story h1 {
        font-size: 2rem;
    }

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

    .opening-statement {
        font-size: 1.1rem;
    }

    .narrow-text h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .service-cards {
        flex-direction: column;
    }

    .testimonial-section {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-number {
        width: auto;
    }

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

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

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

    .page-subtitle {
        font-size: 1.1rem;
    }

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

    .step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

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