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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #ECF0F1;
    --bg-white: #FFFFFF;
    --success-color: #27AE60;
    --border-color: #BDC3C7;
}

html {
    scroll-behavior: smooth;
}

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;
}

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    align-items: center;
    padding: 3rem 5%;
    position: relative;
}

.hero-content-left {
    flex: 1 1 500px;
    padding-right: 3rem;
    position: relative;
    z-index: 10;
    transform: translateX(-20px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-visual-right {
    flex: 1 1 450px;
    position: relative;
}

.hero-image-container {
    position: relative;
    transform: translateY(40px) translateX(30px);
    box-shadow: -15px 25px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.story-intro {
    padding: 6rem 5% 4rem;
    background: var(--bg-light);
}

.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.offset-left {
    transform: translateX(-40px);
}

.offset-right {
    transform: translateX(40px);
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

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

.story-visual {
    flex: 1 1 400px;
}

.story-visual img {
    border-radius: 8px;
    box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.12);
}

.problem-amplify {
    padding: 5rem 5%;
    background: white;
    position: relative;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.problem-text-offset {
    flex: 2 1 600px;
    transform: translateX(60px);
}

.problem-text-offset h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    font-weight: 700;
}

.problem-text-offset p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.problem-stat-block {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    transform: translateY(-30px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 250px;
}

.insight-reveal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.insight-image-left {
    flex: 1 1 350px;
    transform: translateY(-50px);
}

.insight-image-left img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.insight-text-right {
    flex: 1 1 550px;
    transform: translateX(30px);
}

.insight-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-text-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.testimonial-floating {
    padding: 5rem 5%;
    background: var(--bg-light);
    position: relative;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.offset-position {
    transform: translateX(-60px) rotate(-1deg);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--text-dark);
}

.benefits-asymmetric {
    padding: 6rem 5%;
    background: white;
}

.benefits-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefits-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.benefit-3 {
    transform: translateY(-30px);
}

.benefit-4 {
    transform: translateY(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.services-intro-offset {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    transform: translateX(-30px);
}

.services-intro-offset h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-intro-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    max-width: 450px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(odd) {
    transform: translateY(-15px);
}

.service-card:nth-child(even) {
    transform: translateY(15px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05) translateY(0);
}

.service-card.featured .service-price,
.service-card.featured h3 {
    color: white;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.service-card.featured .service-features li::before {
    color: white;
}

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

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

.service-card.featured .select-service {
    background: white;
    color: var(--primary-color);
}

.service-card.featured .select-service:hover {
    background: var(--accent-color);
    color: white;
}

.form-section {
    padding: 6rem 5%;
    background: white;
}

.form-wrapper-offset {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(40px);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

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

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.trust-signals {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.trust-item {
    flex: 1 1 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-brand h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

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

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

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

.page-hero-offset {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 5%;
    background: white;
}

.story-content-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1 1 550px;
    transform: translateX(-30px);
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.story-image-offset {
    flex: 1 1 450px;
    transform: translateY(30px);
}

.story-image-offset img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-block {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.values-asymmetric {
    padding: 6rem 5%;
    background: white;
    text-align: center;
}

.values-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.value-card:nth-child(1) {
    transform: translateY(-20px);
}

.value-card:nth-child(2) {
    transform: translateY(20px);
}

.value-card:nth-child(3) {
    transform: translateY(-15px);
}

.value-card:nth-child(4) {
    transform: translateY(15px);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.team-preview {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.team-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-preview p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-center {
    text-align: center;
}

.services-detailed {
    padding: 4rem 5%;
    background: white;
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.service-detail-block.offset-left .service-detail-content {
    transform: translateX(-40px);
}

.service-detail-block.offset-right .service-detail-content {
    transform: translateX(40px);
}

.service-detail-block.offset-center {
    justify-content: center;
    text-align: center;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 700;
}

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

.service-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

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

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

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.contact-content {
    padding: 4rem 5%;
    background: white;
}

.contact-info-offset {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(-30px);
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--secondary-color);
}

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

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

.contact-map-placeholder {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-hero {
    padding: 6rem 5%;
    background: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.step-item p {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-light);
    padding-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

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

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

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

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

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

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

.extra-info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.extra-info-content ul {
    list-style: none;
}

.extra-info-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.extra-info-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.legal-page {
    padding: 4rem 5%;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

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

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

    .hero-content-left {
        padding-right: 0;
        transform: translateX(0);
    }

    .hero-image-container {
        transform: translateY(20px) translateX(0);
    }

    .offset-left,
    .offset-right {
        transform: translateX(0);
    }

    .problem-text-offset {
        transform: translateX(0);
    }

    .problem-stat-block {
        transform: translateY(0);
    }

    .insight-image-left {
        transform: translateY(0);
    }

    .insight-text-right {
        transform: translateX(0);
    }

    .offset-position {
        transform: translateX(0) rotate(0);
    }

    .benefit-1,
    .benefit-2,
    .benefit-3,
    .benefit-4 {
        transform: translateY(0);
    }

    .services-intro-offset {
        transform: translateX(0);
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .form-wrapper-offset {
        transform: translateX(0);
    }

    .story-text {
        transform: translateX(0);
    }

    .story-image-offset {
        transform: translateY(0);
    }

    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4) {
        transform: translateY(0);
    }

    .service-detail-block.offset-left .service-detail-content,
    .service-detail-block.offset-right .service-detail-content {
        transform: translateX(0);
    }

    .contact-info-offset {
        transform: translateX(0);
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
