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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    display: block;
    padding: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.95)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&h=1000&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.hero-overlay {
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-gray);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

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

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-image {
    border-radius: 12px;
    overflow: hidden;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.insight-highlight {
    background: #fef3c7;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    font-size: 19px;
    margin-top: 30px;
}

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

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.testimonial-text {
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

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

.services-reveal-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-badge {
    background: var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-duration {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-price {
    margin: 25px 0;
}

.price-old {
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 14px;
    color: var(--text-gray);
    display: block;
    margin-top: 5px;
}

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

.btn-service-select:hover {
    background: var(--primary-dark);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
}

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

.urgency-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.urgency-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

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

.urgency-item p {
    font-size: 18px;
    line-height: 1.6;
}

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

.cta-urgent {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-urgent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.urgency-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

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

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

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

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.95)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=800&fit=crop') center/cover;
    color: white;
    text-align: center;
}

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

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

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

.cta-final {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 15px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.sticky-btn {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul a {
    color: #9ca3af;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

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

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

.about-intro {
    margin-bottom: 80px;
}

.about-intro img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

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

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.mission-lead {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-gray);
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-member p {
    color: var(--text-gray);
    line-height: 1.6;
}

.numbers-section {
    margin-bottom: 80px;
    background: var(--bg-light);
    padding: 60px 20px;
    border-radius: 12px;
}

.numbers-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.number-big {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-item p {
    color: var(--text-gray);
    font-size: 16px;
}

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

.values-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-about {
    text-align: center;
    background: var(--bg-light);
    padding: 60px 20px;
    border-radius: 12px;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

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

.services-intro-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.services-list-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.service-details {
    margin: 20px 0;
}

.service-features ul {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

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

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

.comparison-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
}

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

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-content-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.response-time {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.response-time h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.response-time p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-map h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

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

.cta-contact-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.cta-contact-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

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

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

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.thanks-service-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
}

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

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.thanks-tips {
    margin-bottom: 50px;
}

.thanks-tips h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

.tip-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.thanks-cta {
    margin-bottom: 40px;
}

.thanks-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.cta-email {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section {
    padding: 80px 20px;
}

.legal-intro {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-content {
    margin-bottom: 50px;
}

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

.legal-content h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin: 8px 0;
    line-height: 1.7;
    color: var(--text-gray);
}

.legal-back {
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        margin: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 22px;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .stats-grid {
        flex-direction: row;
    }

    .insight-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .insight-image {
        flex: 1;
    }

    .insight-text {
        flex: 1;
    }

    .trust-cards {
        flex-direction: row;
    }

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .urgency-reasons {
        flex-direction: row;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 15px);
    }

    .sticky-cta-content {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .mission-cards {
        flex-direction: row;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 15px);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 0 0 calc(50% - 15px);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .steps-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 0 0 calc(50% - 15px);
    }

    .tips-grid {
        flex-direction: row;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .benefit-item {
        flex: 0 0 100%;
    }

    .team-member {
        flex: 0 0 calc(25% - 22.5px);
    }

    .number-item {
        flex: 0 0 calc(25% - 22.5px);
    }

    .process-step {
        flex: 0 0 calc(33.333% - 20px);
    }
}
