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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

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

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

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

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #d63f40;
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.cta-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.8;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    gap: 4rem;
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.benefits-grid {
    background: var(--bg-light);
    padding: 5rem 4rem;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.benefit-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.story-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.story-left {
    flex: 1.2;
}

.story-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.trust-section {
    background: var(--secondary-color);
    padding: 6rem 4rem;
    color: white;
}

.trust-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    opacity: 0.8;
}

.services-pricing {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.surface {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.features {
    list-style: none;
}

.features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.cta-block {
    background: var(--primary-color);
    padding: 5rem 4rem;
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-section {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-benefit .icon {
    background: var(--success-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d63f40;
}

.final-cta {
    background: var(--bg-light);
    padding: 5rem 4rem;
    text-align: center;
}

.final-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.final-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 4rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.sticky-cta a:hover {
    background: #d63f40;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-header-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.header-left {
    flex: 1;
}

.header-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.header-right {
    flex: 1;
}

.header-right img {
    width: 100%;
    border-radius: 8px;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 8px;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.value-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.numbers-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.numbers-left {
    flex: 1;
}

.numbers-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.numbers-right {
    flex: 1;
}

.numbers-right img {
    width: 100%;
    border-radius: 8px;
}

.approach-block {
    background: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.approach-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.approach-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-simple {
    background: var(--bg-light);
    padding: 5rem 4rem;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-hero-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
}

.services-hero-content {
    flex: 1;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-hero-image {
    flex: 1;
}

.services-hero-image img {
    width: 100%;
    border-radius: 8px;
}

.what-included {
    background: var(--bg-light);
    padding: 5rem 4rem;
}

.included-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.included-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.included-split {
    display: flex;
    gap: 4rem;
}

.included-list {
    flex: 1;
}

.included-list ul {
    list-style: none;
}

.included-list ul li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.included-list ul li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.7rem;
}

.detailed-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-surface {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.service-features li:before {
    content: "• ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.7rem;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.comparison-table {
    background: var(--bg-light);
    padding: 5rem 4rem;
}

.comparison-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.table-container {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.services-table thead {
    background: var(--primary-color);
    color: white;
}

.services-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.services-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.services-table tbody tr:hover {
    background: var(--bg-light);
}

.flexibility-info {
    padding: 5rem 4rem;
}

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

.flex-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.flex-split {
    display: flex;
    gap: 3rem;
}

.flex-item {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.flex-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.flex-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-services-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-services-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-header-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.contact-header-left {
    flex: 1;
}

.contact-header-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-header-right {
    flex: 1;
}

.contact-header-right img {
    width: 100%;
    border-radius: 8px;
}

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

.contact-info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 5rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.small-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.address {
    line-height: 1.8;
}

.locations-info {
    flex: 1;
}

.locations-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.location-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.location-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.location-item p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.location-status {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.visit-info {
    background: var(--bg-light);
    padding: 5rem 4rem;
}

.visit-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.visit-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.visit-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 4rem;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--bg-light);
}

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

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

.thanks-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.selected-service {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.urgent-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.urgent-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.urgent-contact a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 4rem;
    background: var(--bg-white);
}

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

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.update-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-wrapper h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.legal-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-wrapper li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-wrapper a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

.cookies-table th {
    background: var(--bg-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.final-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .story-split,
    .form-split,
    .page-header-split,
    .split-content,
    .numbers-split,
    .services-hero-split,
    .service-detail-split,
    .contact-header-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-right {
        height: 50vh;
    }

    .benefits-container,
    .testimonials,
    .pricing-grid,
    .values-grid,
    .included-split,
    .flex-split,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1,
    .header-left h1,
    .services-hero-content h1,
    .contact-header-left h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .story-left h2,
    .split-text h2,
    .service-detail-text h2 {
        font-size: 1.8rem;
    }

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}