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

:root {
    --primary-color: #2d3436;
    --secondary-color: #0984e3;
    --accent-color: #fdcb6e;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #00b894;
    --error-color: #d63031;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 52, 54, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

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

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

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #f0b84b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 110, 0.4);
}

.story-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.story-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.split-image {
    flex: 1;
    height: 450px;
    background-color: #c7ecee;
    border-radius: 8px;
}

.img-problem {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.amplification-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.amplification-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.amplification-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-inline {
    margin-top: 40px;
}

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

.btn-secondary:hover {
    background-color: #0770c2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(9, 132, 227, 0.3);
}

.insight-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.insight-box h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.insight-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.insight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.insight-list li {
    font-size: 18px;
    padding-left: 35px;
    position: relative;
}

.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 22px;
}

.social-proof {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

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

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

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.img-showcase-1 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.img-showcase-2 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.img-showcase-3 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.showcase-overlay h3 {
    font-size: 28px;
}

.trust-building {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.trust-building h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.guarantee-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

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

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #dfe6e9;
}

.img-service-running {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.img-service-urban {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.img-service-training {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.img-service-walking {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.img-service-premium {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.img-service-kids {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.service-features li {
    font-size: 15px;
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background-color: #1e272e;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 70px 20px;
    background-color: #fff3cd;
}

.urgency-box {
    text-align: center;
    max-width: 700px;
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.btn-urgency {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--error-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

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

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

.form-wrapper h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.main-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.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: 5px;
    font-size: 16px;
    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);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-final-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background-color: #f0b84b;
    transform: translateY(-2px);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

.btn-sticky {
    display: block;
    padding: 14px 28px;
    background-color: var(--success-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #019874;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 184, 148, 0.5);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
}

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.content-image {
    flex: 1;
    height: 400px;
    background-color: #dfe6e9;
    border-radius: 8px;
}

.img-about-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.img-about-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.mission-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 80px;
}

.mission-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-box p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    margin-bottom: 80px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.team-section {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    text-align: center;
    padding: 60px 0;
}

.cta-about h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.btn-primary:hover {
    background-color: #1e272e;
    transform: translateY(-2px);
}

.services-page {
    padding: 60px 20px 100px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-color: #dfe6e9;
    border-radius: 10px;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-tagline {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.price-box {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta {
    margin-top: 80px;
    text-align: center;
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 10px;
}

.services-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-page {
    padding: 60px 20px 100px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

.contact-cta {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-cta h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.map-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.map-content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-note {
    font-size: 16px;
    opacity: 0.9;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    font-size: 17px;
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-light);
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.thanks-note a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 20px 100px;
}

.legal-date {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-dark);
}

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

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

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

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

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.gdpr-table,
.cookie-table {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.gdpr-row,
.cookie-row {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-row:last-child,
.cookie-row:last-child {
    border-bottom: none;
}

.gdpr-row strong,
.cookie-row strong {
    color: var(--text-dark);
}

.gdpr-row span,
.cookie-row span {
    color: var(--text-light);
}

.legal-back {
    text-align: center;
    margin-top: 60px;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .split-layout,
    .content-split,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .split-layout.reverse,
    .content-split.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .split-text h2,
    .content-text h2 {
        font-size: 28px;
    }

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

    .benefits-layout {
        flex-direction: column;
    }

    .showcase-item {
        min-width: 100%;
    }

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

    .service-card {
        min-width: 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .lead-text {
        font-size: 20px;
    }

    .main-form {
        padding: 25px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}