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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #2a7f62;
    color: #ffffff;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a7f62;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2a7f62;
}

.ad-disclosure {
    font-size: 0.8125rem;
    color: #6b7280;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    border-radius: 4px;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.hero-split h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.hero-split p {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2a7f62;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #236b51;
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #2a7f62;
    border: 2px solid #2a7f62;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: #2a7f62;
    color: #ffffff;
}

.cta-white {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #2a7f62;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s;
}

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

.link-arrow {
    color: #2a7f62;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s;
}

.link-arrow:after {
    content: '→';
    margin-left: 0.5rem;
}

.link-arrow:hover {
    gap: 0.25rem;
}

.intro-section,
.expertise-section,
.approach-section,
.knowledge-section,
.split-section {
    padding: 4rem 0;
}

.intro-section h2,
.expertise-section h2,
.approach-section h2,
.knowledge-section h2,
.split-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.intro-section p,
.expertise-section p,
.approach-section p,
.knowledge-section p,
.split-section p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a7f62;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: #6b7280;
}

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

.approach-list li {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-size: 1.5rem;
}

.approach-list strong {
    color: #1a202c;
}

.services-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #6b7280;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid #2a7f62;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a7f62;
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2a7f62;
    margin-bottom: 1.25rem;
}

.service-link {
    color: #2a7f62;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    text-decoration: underline;
}

.testimonials-section {
    padding: 4rem 0;
    background: #ffffff;
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 1.75rem;
    border-radius: 6px;
    border-left: 4px solid #2a7f62;
}

.testimonial p {
    font-size: 1.0625rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial cite {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: normal;
}

.cta-split {
    padding: 0;
}

.cta-split .split-left,
.cta-split .split-right {
    padding: 4rem 3rem;
}

.bg-accent {
    background: #2a7f62;
    color: #ffffff;
}

.bg-accent h2,
.bg-accent p {
    color: #ffffff;
}

.bg-dark {
    background: #1a202c;
    color: #ffffff;
}

.bg-dark h3,
.bg-dark p {
    color: #ffffff;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-weight: 700;
}

.form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro p {
    font-size: 1.0625rem;
    color: #6b7280;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2a7f62;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #236b51;
}

.disclaimer-section {
    padding: 3rem 0;
    background: #f3f4f6;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.disclaimer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.disclaimer-content p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.8;
}

.site-footer {
    background: #1a202c;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2a7f62;
}

.footer-section p {
    font-size: 0.9375rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    font-size: 0.9375rem;
    color: #d1d5db;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #2a7f62;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 1.75rem;
    background: #2a7f62;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(42,127,98,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42,127,98,0.5);
}

.page-header {
    background: linear-gradient(135deg, #2a7f62 0%, #236b51 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.bg-light {
    background: #f8f9fa;
}

.values-section {
    padding: 5rem 0;
    background: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    color: #1a202c;
}

.value-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2a7f62;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

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

.styled-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: #4a5568;
}

.styled-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2a7f62;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1rem;
    color: #4a5568;
}

.process-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2a7f62;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a7f62 0%, #236b51 100%);
    text-align: center;
}

.cta-content-center {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: #ffffff;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content-center p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detail-section {
    padding: 3rem 0;
}

.service-detail {
    padding: 3rem 0;
}

.service-badge {
    display: inline-block;
    background: #e0f2ed;
    color: #2a7f62;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge.featured {
    background: #2a7f62;
    color: #ffffff;
}

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

.service-includes li {
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-weight: 700;
}

.service-duration {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1.5rem;
}

.pricing-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-card.inline {
    margin-top: 2rem;
    margin-bottom: 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2a7f62;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2a7f62;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #236b51;
}

.comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: #1a202c;
}

.comparison-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: #1a202c;
}

.contact-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.office-note {
    background: #f0f9f6;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2a7f62;
    margin-top: 2rem;
}

.office-note p {
    font-size: 0.9375rem;
    color: #2c3e50;
    margin: 0;
}

.location-section {
    padding: 4rem 0;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.benefits-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-size: 1.5rem;
}

.directions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.directions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.directions-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a202c;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-option {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 6px;
}

.direction-option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: #2a7f62;
}

.direction-option p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-weight: 700;
    font-size: 1.25rem;
}

.thanks-service-info {
    background: #e0f2ed;
    padding: 1.75rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.selected-service {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2a7f62;
    margin-bottom: 0.75rem;
}

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

.btn-primary {
    padding: 0.875rem 2rem;
    background: #2a7f62;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #236b51;
}

.btn-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    color: #2a7f62;
    border: 2px solid #2a7f62;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #2a7f62;
    color: #ffffff;
}

.thanks-contact {
    font-size: 0.9375rem;
    color: #6b7280;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 4rem 0;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.last-updated {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1rem;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 1.375rem;
    margin: 1.75rem 0 0.875rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

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

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

.legal-container li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container strong {
    color: #1a202c;
}

.legal-container a {
    color: #2a7f62;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #236b51;
}

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

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

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

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

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

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

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

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-split h1 {
        font-size: 1.75rem;
    }

    .section-header-center h2,
    .cta-content-center h2 {
        font-size: 1.875rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }
}