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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.centered {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-left {
    flex: 1;
    padding-right: 60px;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.cta-large {
    background: var(--accent-color);
    color: white;
    padding: 20px 48px;
    font-size: 18px;
}

.cta-large:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 16px;
}

.cta-text:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.problem-section,
.insight-section,
.services-preview,
.process-section,
.trust-section,
.form-section,
.final-cta,
.about-story,
.values-section,
.team-section,
.approach-section,
.recognition-section,
.cta-section,
.contact-section,
.map-section,
.faq-contact,
.alternative-contact,
.services-detailed,
.pricing-note,
.faq-section,
.thanks-section,
.additional-info,
.page-header,
.testimonial-section {
    padding: 80px 20px;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.insight-section {
    background: var(--bg-light);
}

.insight-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    flex: 1 1 calc(50% - 16px);
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.service-item {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.service-item.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

.testimonial-section {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

.testimonial p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-secondary);
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    margin-top: 24px;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.process-steps strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.process-steps p {
    color: var(--text-secondary);
    margin: 0;
}

.trust-section {
    background: var(--bg-light);
}

.trust-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.stat-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

.form-section {
    background: var(--bg-light);
}

.form-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-left p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 28px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d97706;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.page-header {
    background: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.approach-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.achievement-list {
    list-style: none;
    margin-top: 24px;
}

.achievement-list li {
    padding-left: 28px;
    margin-bottom: 16px;
    position: relative;
    color: var(--text-secondary);
    font-size: 17px;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.service-block {
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 16px;
}

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

.pricing-note,
.faq-section {
    background: var(--bg-light);
}

.pricing-note h2,
.faq-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

.pricing-note p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.faq-item {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

.contact-info {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-block a {
    color: var(--primary-color);
}

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

.map-placeholder {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder img {
    width: 100%;
}

.thanks-section {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 10px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-secondary);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.info-cards {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.info-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.update-date {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.legal-page strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-page a {
    color: var(--primary-color);
}

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .benefits-grid {
        gap: 24px;
    }

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

    .stats-row {
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 16px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .split-content p {
        font-size: 16px;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-info {
        padding: 32px 24px;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .split-content h2 {
        font-size: 26px;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 24px;
    }

    .thanks-section h1 {
        font-size: 32px;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}