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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

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

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

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.split-left {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.split-right {
    padding: 0;
    overflow: hidden;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.value-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.value-content {
    max-width: 550px;
    padding: 4rem 3rem;
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-preview h2,
.services-preview .section-intro {
    text-align: center;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-highlight {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-highlight img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.testimonials-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.testimonial-content {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-detailed {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.benefits-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.form-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.final-cta {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.btn-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-col a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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: 2rem;
}

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

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

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

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-hero {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.about-story {
    padding: 5rem 0;
}

.story-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-section {
    padding: 5rem 0;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.why-choose {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.choose-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.choose-image,
.choose-content {
    flex: 1;
}

.choose-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.stats-highlight {
    padding: 5rem 0;
}

.stats-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    min-width: 200px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.services-intro {
    padding: 3rem 0;
    text-align: center;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.services-listing {
    padding: 3rem 0;
}

.service-detail {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

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

.service-body {
    padding: 2rem;
}

.service-description {
    margin-bottom: 2rem;
}

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

.service-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.btn-service-select {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.comparison-benefits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.comparison-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.compare-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.compare-item.highlight {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.compare-item.highlight h3 {
    color: var(--bg-white);
}

.negative-list li,
.positive-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.negative-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.positive-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-form-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quick-links {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.quick-link-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.support-hours {
    padding: 4rem 0;
}

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

.support-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.location-map {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.map-placeholder {
    max-width: 800px;
    margin: 2rem auto;
    padding: 4rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 2px dashed var(--border-color);
    font-size: 1.5rem;
    color: var(--text-light);
}

.thanks-hero {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 4rem 0;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.selected-service {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.selected-service h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-confirmation {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.free-trial-info {
    padding: 4rem 0;
}

.trial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 8px;
}

.trial-box h2 {
    margin-bottom: 1rem;
}

.trial-features {
    margin-top: 2rem;
}

.trial-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.trial-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.helpful-links {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.helpful-links h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.link-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
}

.testimonial-thanks {
    padding: 4rem 0;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.legal-text ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 1rem;
        gap: 1rem;
    }

    .hero-split,
    .value-split,
    .testimonials-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 2rem 1.5rem;
    }

    .split-right img {
        height: 300px;
    }

    .story-split,
    .choose-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .btn-sticky {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .stat-number,
    .step-number {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}