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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e85d3a;
    --accent-color: #f4a261;
    --dark-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --text-color: #333333;
    --white: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 1.2rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.btn-cookie.accept:hover {
    background-color: #218838;
}

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

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    padding: 3rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 3rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background-color: #d44a26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 58, 0.4);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-block img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.hero-overlay-stat {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(3deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-color);
    max-width: 150px;
}

.intro-offset {
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-narrow {
    flex: 1.5;
}

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

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-image-side {
    flex: 1;
}

.intro-image-side img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.split-problem {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left,
.split-right {
    flex: 1;
}

.problem-card {
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-card.red {
    background-color: #fff5f5;
    border-left: 5px solid var(--danger-color);
}

.problem-card.blue {
    background-color: #f0f8ff;
    border-left: 5px solid var(--primary-color);
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--danger-color);
}

.trust-build {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.trust-lead {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.trust-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
}

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

.cta-sticky-trigger {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d44a26 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.cta-inline:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.service-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.insight-section {
    padding: 5rem 2rem;
    background-color: var(--light-gray);
}

.insight-block {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-block h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.insight-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    max-width: 200px;
    margin: 0 auto;
}

.insight-text {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    color: var(--dark-color);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: 400;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

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

.btn-submit:hover {
    background-color: #d44a26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 58, 0.4);
}

.urgency-block {
    padding: 3rem 2rem;
    background-color: #fff8dc;
    border-left: 5px solid var(--accent-color);
}

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

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-urgency {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background-color: #e89350;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.sticky-cta.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-cta-btn {
    display: block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(232, 93, 58, 0.5);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d44a26;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 93, 58, 0.6);
}

.page-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a61 100%);
    color: var(--white);
    text-align: center;
}

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

.about-story {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-image {
    flex: 1;
}

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

.mission-section {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.team-values {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

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

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

.stats-row {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat-box {
    text-align: center;
    flex: 1;
}

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

.stat-box .stat-label {
    font-size: 1rem;
}

.cta-about {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.cta-btn:hover {
    background-color: #d44a26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 58, 0.4);
}

.cta-btn.secondary {
    background-color: var(--primary-color);
    margin: 0.5rem;
}

.cta-btn.secondary:hover {
    background-color: #1a4a61;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.service-detail-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a61 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.service-detail-header h2 {
    font-size: 2rem;
}

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

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-detail-body {
    padding: 2rem;
}

.service-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-body h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.service-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
}

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

.service-process {
    padding: 5rem 2rem;
    background-color: var(--light-gray);
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
}

.cta-services {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-info {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
}

.contact-map h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-placeholder {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.95rem;
    color: #666;
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-info {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanks-service-info {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: none;
}

.next-steps {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.step-card {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.thanks-cta {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.legal-page {
    margin-top: 80px;
    padding: 3rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .hero-text-block {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 2rem;
    }

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

    .hero-overlay-stat {
        bottom: 20px;
        left: 20px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

    .testimonial-inline {
        flex-direction: column;
    }

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

    .insight-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-story {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

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

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        width: 100%;
        height: 200px;
    }

    .cookie-content {
        font-size: 0.85rem;
    }

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

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