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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb8;
    --accent-color: #d4793a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 5%;
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 200px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    padding: 80px 5% 60px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    align-items: center;
}

.hero-content-left {
    flex: 1 1 500px;
    padding: 40px 60px 40px 0;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-intro {
    font-size: 19px;
    margin-bottom: 32px;
    color: var(--text-light);
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.hero-image-right {
    flex: 1 1 400px;
    position: relative;
    margin-left: -40px;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
}

.intro-asymmetric {
    padding: 100px 5% 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
}

.text-block-narrow {
    flex: 1 1 500px;
    max-width: 600px;
}

.text-block-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.text-block-narrow p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.offset-card {
    flex: 1 1 300px;
    background: var(--accent-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    top: -80px;
    max-width: 380px;
}

.offset-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.offset-card p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 5%;
    background: var(--bg-white);
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 8%;
}

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

.section-header-left p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 5%;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    flex: 1 1 300px;
    max-width: 450px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 60px;
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-left: 20px;
    margin-top: -20px;
}

.service-card.offset-4 {
    margin-left: 80px;
    margin-top: 30px;
}

.service-card.offset-5 {
    margin-left: 40px;
    margin-top: -10px;
}

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

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.6;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

.trust-section {
    padding: 100px 5%;
    background: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.trust-content-block {
    flex: 1 1 500px;
    padding-left: 5%;
}

.trust-content-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.trust-image {
    flex: 1 1 400px;
    position: relative;
    margin-right: -100px;
}

.trust-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.testimonials-scattered {
    padding: 100px 5%;
    background: var(--bg-white);
}

.testimonials-scattered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 5%;
}

.testimonial {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 400px;
    box-shadow: var(--shadow);
}

.testimonial.pos-1 {
    margin-top: 0;
}

.testimonial.pos-2 {
    margin-top: 60px;
    margin-left: 20px;
}

.testimonial.pos-3 {
    margin-top: 30px;
    margin-left: -20px;
}

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

.client-name {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section-inline {
    padding: 80px 5%;
    background: var(--secondary-color);
    text-align: center;
}

.cta-block {
    max-width: 700px;
    margin: 0 auto;
}

.cta-block h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.benefits-reveal {
    padding: 100px 5%;
    background: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 5%;
}

.benefit-item {
    flex: 1 1 240px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item:nth-child(odd) {
    margin-top: 0;
}

.benefit-item:nth-child(even) {
    margin-top: 40px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #f5f7fa 100%);
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto 0 10%;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px 5%;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    border-color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.sticky-cta a {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #c56a2e;
    transform: scale(1.05);
}

.page-hero-about {
    padding: 120px 5% 80px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.hero-text-offset {
    max-width: 700px;
    margin-left: 10%;
}

.hero-text-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-text-offset p {
    font-size: 20px;
    line-height: 1.6;
}

.about-story {
    padding: 100px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.story-block-left {
    flex: 1 1 500px;
}

.story-block-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-block-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.story-image-right {
    flex: 1 1 400px;
}

.story-image-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 260px;
    max-width: 320px;
    padding: 32px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.team-member .role {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.mission-section {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: white;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.services-hero {
    padding: 120px 5% 60px 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.services-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 5%;
}

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.service-detail-item.featured {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 2px solid var(--accent-color);
}

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

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

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

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

.service-pricing .price.special {
    font-size: 42px;
}

.service-pricing .savings {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.service-cta {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-cta.highlighted {
    background: var(--accent-color);
}

.service-cta.highlighted:hover {
    background: #c56a2e;
}

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

.service-detail-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.comparison-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

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

.comparison-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-hero {
    padding: 120px 5% 60px 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-block {
    flex: 1 1 500px;
}

.contact-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.detail-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.detail-item .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-image-block {
    flex: 1 1 400px;
}

.contact-image-block img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.directions-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

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

.directions-content p {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-light);
    text-align: center;
}

.transport-options {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.transport-item {
    flex: 1 1 300px;
    padding: 28px;
    background: white;
    border-radius: 10px;
}

.transport-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.faq-contact {
    padding: 80px 5%;
    background: var(--bg-white);
}

.faq-contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-hero {
    padding: 120px 5% 80px 5%;
    background: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1 1 500px;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.7;
}

.order-confirmation {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.order-confirmation h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.order-confirmation p {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.next-steps-intro {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.preparation-list {
    list-style: none;
    margin-top: 12px;
}

.preparation-list li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.preparation-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 1 1 350px;
}

.thanks-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.what-happens-next {
    padding: 80px 5%;
    background: var(--bg-white);
}

.what-happens-next h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.steps-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1 1 240px;
    max-width: 300px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 100px 5% 80px 5%;
    background: var(--bg-white);
}

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

.legal-page .updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        max-width: 100%;
        border-radius: 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row;
    }

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

    .hero-image-right {
        margin-left: 0;
        margin-top: 20px;
    }

    .hero-image-right img {
        transform: rotate(0);
    }

    .offset-card {
        top: 0;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        margin-left: 0;
        margin-top: 0;
    }

    .trust-image {
        margin-right: 0;
    }

    .trust-image img {
        transform: rotate(0);
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}