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

:root {
    --primary-color: #2a5c3f;
    --primary-dark: #1a4d2e;
    --primary-light: #4a9d6f;
    --accent-color: #76c893;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

.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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.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;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.hero-right {
    background: var(--primary-color);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-asymmetric {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.visual-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.label-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.content-block h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.stat-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    margin-top: 8px;
}

.services-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 20px;
    color: var(--text-medium);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

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

.btn-service-select:hover {
    background: var(--primary-dark);
}

.trust-band {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
}

.trust-item span {
    font-size: 16px;
    opacity: 0.9;
}

.process-split .split-content {
    gap: 0;
}

.dark-bg {
    background: var(--primary-color);
    color: white;
    padding: 80px 60px;
}

.dark-bg h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 48px;
}

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

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

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.step-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.testimonial-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 15px;
    color: var(--text-light);
}

.form-section {
    padding: 100px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 18px;
    color: var(--text-medium);
}

.main-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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-actions {
    margin-top: 32px;
}

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.form-privacy {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

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

.final-cta {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-left h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-left p {
    font-size: 18px;
    color: var(--text-medium);
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s, transform 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    padding: 16px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: background 0.3s, transform 0.2s;
}

.sticky-cta a:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    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: 32px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.page-hero {
    padding: 100px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-lead {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.service-benefits li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-duration {
    font-size: 16px;
    color: var(--text-light);
}

.services-cta {
    padding: 80px 0;
}

.cta-box {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

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

.about-intro,
.values-section,
.expertise-section,
.mission-section,
.numbers-section,
.cta-section {
    padding: 80px 0;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.location-description {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 48px;
}

.expertise-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.expertise-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.mission-text {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.number-card {
    flex: 1 1 calc(25% - 24px);
    min-width: 200px;
    background: var(--bg-light);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
}

.big-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.number-label {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.4;
}

.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.contact-cta-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-cta-box p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.location-section,
.faq-section {
    padding: 80px 0;
}

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

.map-placeholder {
    margin-top: 32px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 16px 0 16px 32px;
    color: var(--text-medium);
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.legal-page a:hover {
    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-bottom: 1px solid var(--border-color);
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.service-confirmation {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.steps-list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

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

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 48px;
    }

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

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .contact-split {
        flex-direction: column;
        gap: 48px;
    }

    .contact-cta-box {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 38px;
    }

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

    .hero-left {
        padding: 60px 30px;
    }

    .content-block h2,
    .section-header-center h2,
    .form-header h2,
    .page-hero h1 {
        font-size: 32px;
    }

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

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

    .main-form {
        padding: 32px 24px;
    }

    .dark-bg {
        padding: 60px 30px;
    }

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

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

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

    .service-detail-card {
        padding: 32px 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }
}

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

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

    .trust-stats {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
