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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 16px;
    color: #555;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Split Content Base */
.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 30px;
}

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

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

/* Hero Split */
.hero-split {
    background-color: #f8f9fa;
}

.hero-split h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary {
    background-color: #3498db;
    color: #fff;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    background-color: #2c3e50;
    color: #fff;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

/* Intro Split */
.intro-split {
    background-color: #fff;
}

.intro-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-split img {
    border-radius: 8px;
}

/* Value Split */
.value-split {
    background-color: #f8f9fa;
}

.value-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.value-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #444;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

/* Services Preview */
.services-preview {
    background-color: #fff;
    padding: 80px 30px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 19px;
    color: #666;
}

/* Services Grid Split */
.services-grid-split {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    min-height: 80px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.select-service.selected {
    background-color: #27ae60;
}

/* Form Split */
.form-split {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-visual h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-visual p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.form-visual img {
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Trust Split */
.trust-split {
    background-color: #fff;
}

.trust-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.trust-split img {
    border-radius: 8px;
}

/* Methodology Split */
.methodology-split {
    background-color: #2c3e50;
    color: #fff;
}

.methodology-split h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #fff;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.method-step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.method-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.methodology-split img {
    border-radius: 8px;
}

/* Benefits Grid */
.benefits-split {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* CTA Split */
.cta-split {
    background-color: #fff;
}

.cta-visual img {
    border-radius: 8px;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

/* Disclaimer */
.disclaimer {
    background-color: #fff9e6;
    padding: 40px 30px;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 0;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 15px;
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.email-display {
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Page Hero Split */
.page-hero-split {
    background-color: #3498db;
    color: #fff;
}

.page-hero-split h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.page-hero-split .hero-lead {
    font-size: 20px;
    color: #ecf0f1;
}

.page-hero-split img {
    border-radius: 8px;
}

/* Story Split */
.story-split {
    background-color: #fff;
}

.story-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-split img {
    border-radius: 8px;
}

/* Philosophy Split */
.philosophy-split {
    background-color: #f8f9fa;
}

.philosophy-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-split img {
    border-radius: 8px;
}

/* Values Section */
.values-section {
    background-color: #fff;
    padding: 80px 30px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Expertise Split */
.expertise-split {
    background-color: #f8f9fa;
}

.expertise-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.expertise-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.expertise-list li {
    font-size: 17px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.expertise-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.expertise-split img {
    border-radius: 8px;
}

/* Approach Split */
.approach-split {
    background-color: #fff;
}

.approach-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-split img {
    border-radius: 8px;
}

/* CTA About */
.cta-about {
    background-color: #3498db;
    padding: 80px 30px;
    text-align: center;
}

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

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-about p {
    font-size: 19px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 32px;
}

/* Service Detail Split */
.service-detail-split {
    padding: 60px 0;
}

.service-detail-split:nth-child(odd) {
    background-color: #f8f9fa;
}

.service-detail-split:nth-child(even) {
    background-color: #fff;
}

.service-detail-split h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-split p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    margin: 28px 0;
}

.service-features h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #444;
}

.service-features ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 16px;
}

.price-display {
    margin: 24px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 17px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.service-detail-split img {
    border-radius: 8px;
}

/* Form Section Services */
.form-section-services {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-container-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container-centered > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.form-container-centered .contact-form {
    text-align: left;
}

/* Contact Info Split */
.contact-info-split {
    background-color: #fff;
}

.contact-info-split h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-info-split img {
    border-radius: 8px;
}

/* Contact Approach Split */
.contact-approach-split {
    background-color: #f8f9fa;
}

.contact-approach-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-approach-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-approach-split img {
    border-radius: 8px;
}

/* Location Split */
.location-split {
    background-color: #fff;
}

.location-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.location-split p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.location-split img {
    border-radius: 8px;
}

/* CTA Contact */
.cta-contact {
    background-color: #3498db;
    padding: 80px 30px;
    text-align: center;
}

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

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-contact p {
    font-size: 19px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 32px;
}

/* Thanks Section */
.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

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

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-item .step-number {
    min-width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

/* Legal Page */
.legal-page {
    padding: 80px 30px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

.btn-reset-cookies {
    margin: 24px 0;
    padding: 14px 28px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-reset-cookies:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

    .hero-split h1,
    .page-hero-split h1 {
        font-size: 38px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 600px) {
    .hero-split h1,
    .page-hero-split h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .legal-container h1 {
        font-size: 32px;
    }
}
