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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #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;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.97);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 1px 3px 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;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

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

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

.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 900px;
}

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

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

.story-text {
    flex: 1;
    min-width: 280px;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    min-width: 280px;
    margin-top: 30px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.problem-amplification h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 100%;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--error-color);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.insight-reveal h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.insight-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

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

.trust-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
}

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

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

.cta-inline {
    padding: 60px 20px;
    background: var(--bg-light);
}

.cta-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

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

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.benefit-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.how-it-works {
    padding: 80px 20px;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.steps-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.step {
    text-align: center;
    max-width: 300px;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    display: none;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

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

.service-card {
    flex: 1 1 100%;
    min-width: 280px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

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

.service-card.premium {
    border-color: var(--primary-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card.premium .service-badge {
    background: var(--primary-color);
}

.service-header {
    padding: 30px 30px 20px;
    background: var(--bg-light);
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.service-ideal {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.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 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

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

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

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

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

.urgency-box {
    background: #fef3c7;
    border-left: 4px solid var(--accent-color);
    padding: 35px;
    border-radius: 8px;
}

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

.urgency-box p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.urgency-box strong {
    color: var(--text-dark);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.btn-final {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--bg-white);
}

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

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

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

.btn-sticky {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.about-content,
.services-overview,
.contact-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-story p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.mission-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
}

.mission-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

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

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

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

.value-card {
    flex: 1 1 100%;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

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

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

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

.stats-section {
    padding: 80px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

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

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

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

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

.process-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

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

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

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

.contact-info,
.contact-map {
    flex: 1 1 100%;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 8px;
}

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

.contact-faq h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-faq p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-faq strong {
    color: var(--text-dark);
}

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

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

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

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.location-info p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

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

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
}

.step-icon {
    font-size: 2rem;
    min-width: 50px;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

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

.thanks-extra {
    text-align: left;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.thanks-extra h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.thanks-extra p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-extra ul {
    list-style: none;
    padding-left: 0;
}

.thanks-extra li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.thanks-extra li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    text-align: left;
}

.testimonial-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

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

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

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        gap: 5px;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 10px 18px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .cookie-content p {
        text-align: left;
    }

    .problem-grid {
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1 1 calc(50% - 15px);
    }

    .story-section .container-story {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .story-image {
        margin-top: 0;
    }

    .steps-visual {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .step-arrow {
        display: block;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-grid {
        flex-wrap: nowrap;
    }

    .thanks-actions {
        gap: 20px;
    }
}

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

    .problem-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }
}
