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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #f6ad55;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #f56565;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

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

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

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(246, 173, 85, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 173, 85, 0.5);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-offset-left {
    width: 55%;
    padding: 60px 80px 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-content-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(50px);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

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

.intro-hook {
    padding: 120px 20px;
    background: var(--bg-light);
}

.lead-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.lead-text.emphasis {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
}

.problem-amplify {
    padding: 100px 20px;
}

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

.split-image {
    flex: 1;
}

.split-text {
    flex: 1;
}

.section-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 20px 25px;
    margin: 30px 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s;
}

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

.story-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefit-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
}

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

.emphasis-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.card-offset-1 {
    transform: translateY(-20px);
}

.card-offset-2 {
    transform: translateY(20px);
}

.card-offset-3 {
    transform: translateY(-10px);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.7;
}

.credibility-section {
    padding: 100px 20px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.mechanism-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.mechanism-section .centered-heading {
    color: var(--bg-white);
}

.mechanism-section p {
    color: rgba(255, 255, 255, 0.9);
}

.mechanism-blocks {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mechanism-item {
    flex: 1;
    min-width: 250px;
}

.mechanism-item h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.visual-break {
    position: relative;
    height: 500px;
}

.full-width-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    background: rgba(26, 54, 93, 0.85);
    padding: 40px 60px;
    border-radius: 8px;
    max-width: 800px;
}

.overlay-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.transformation-section {
    padding: 100px 20px;
}

.transformation-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.transform-item {
    flex: 1;
    min-width: 280px;
}

.transform-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.transform-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 173, 85, 0.4);
}

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

.loss-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.loss-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1.1rem;
}

.loss-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
    font-size: 2rem;
}

.services-pricing {
    padding: 100px 20px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.section-intro.centered {
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

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

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

.service-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.choice-comparison {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.choice-column {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
}

.choice-column.highlight-choice {
    background: var(--primary-color);
    color: var(--bg-white);
}

.choice-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.choice-column.highlight-choice h3 {
    color: var(--accent-color);
}

.form-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.form-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 173, 85, 0.4);
}

.final-testimonial {
    padding: 100px 20px;
}

.large-quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

.large-quote cite {
    display: block;
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.98);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content,
.services-detailed,
.contact-section {
    padding: 80px 20px;
}

.about-story,
.about-discovery,
.about-approach,
.about-stats,
.about-mission,
.about-team,
.about-commitment,
.about-cta {
    margin-bottom: 60px;
}

.about-story h2,
.about-discovery h2,
.about-approach h2,
.about-stats h2,
.about-mission h2,
.about-team h2,
.about-commitment h2,
.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.commitment-list {
    list-style: none;
    margin-top: 20px;
}

.commitment-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1rem;
}

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

.service-detail-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--accent-color);
    border-width: 3px;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: var(--bg-light);
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

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

.service-detail-body {
    padding: 40px;
}

.service-description-full {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-detail-list {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
}

.service-detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

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

.service-cta {
    margin-top: 30px;
}

.btn-service {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-service:hover {
    transform: translateY(-2px);
}

.services-comparison {
    padding: 80px 20px;
    background: var(--bg-light);
}

.comparison-guide {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guide-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.guide-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guide-item ul {
    list-style: none;
    padding: 0;
}

.guide-item ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.guide-item ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.contact-note-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.9);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.final-cta-contact {
    padding: 80px 20px;
    text-align: center;
}

.final-cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 150px 20px 80px;
}

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

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

.thanks-heading {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.service-confirmation {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
}

.service-confirmation h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

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

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.thanks-cta-section {
    margin-top: 60px;
}

.thanks-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 150px 20px 80px;
}

.legal-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

@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: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        border-radius: 8px;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-offset-left {
        width: 100%;
        padding: 20px;
    }

    .hero-content-box {
        transform: translateX(0);
        padding: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        top: auto;
    }

    .hero-img {
        border-radius: 8px;
    }

    .split-content {
        flex-direction: column;
    }

    .section-heading {
        font-size: 2rem;
    }

    .centered-heading {
        font-size: 2rem;
    }

    .overlay-text {
        padding: 30px 20px;
    }

    .overlay-text h2 {
        font-size: 1.8rem;
    }

    .mechanism-blocks,
    .transformation-layout,
    .choice-comparison {
        flex-direction: column;
    }

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

    .contact-form {
        padding: 30px;
    }

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-heading,
    .centered-heading {
        font-size: 1.7rem;
    }

    .service-price {
        font-size: 2rem;
    }

    .service-price-large {
        font-size: 2.5rem;
    }

    .form-heading {
        font-size: 2rem;
    }

    .thanks-heading {
        font-size: 2rem;
    }
}