/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5c8a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-text-center {
    max-width: 900px;
    z-index: 1;
}

.hero-text-center h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Containers */
.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

.story-intro {
    background: #f8f9fa;
    padding: 4rem 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.intro-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 2rem;
}

/* Problem Section */
.problem-section {
    background: #fff;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    color: #7f8c8d;
}

/* Insight Section */
.insight-reveal {
    background: #ecf0f1;
    padding: 5rem 0;
}

.insight-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-box {
    background: #fff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 5px solid #e74c3c;
    border-radius: 5px;
}

.insight-stat {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Trust Building */
.trust-building {
    padding: 6rem 0;
    background: #fff;
}

.trust-image {
    flex: 1;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
}

.trust-list li strong {
    color: #27ae60;
}

.btn-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background: #2980b9;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #1a5c8a;
    transform: translateY(-2px);
}

/* Image Placeholders */
.img-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.trust-img {
    height: 400px;
}

/* Testimonials */
.testimonials-flow {
    background: #f8f9fa;
    padding: 5rem 0;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-item {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

/* How We Work */
.how-we-work {
    background: #fff;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2980b9;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Benefits Reveal */
.benefits-reveal {
    background: #ecf0f1;
    padding: 5rem 0;
}

.benefits-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefits-list-block {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.benefit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.benefit-amount {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.2rem;
}

.benefits-summary {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Urgency Section */
.urgency-section {
    background: #fff;
    padding: 4rem 0;
}

.urgency-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgency-calc {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.urgency-calc strong {
    font-size: 1.6rem;
}

/* Form Section */
.form-main {
    background: #f8f9fa;
    padding: 5rem 0;
}

.form-main h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    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: #2980b9;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Pricing Section */
.pricing-reveal {
    background: #fff;
    padding: 5rem 0;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.price-card.featured,
.price-card.vip {
    border: 2px solid #2980b9;
    background: #fff;
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: #fff;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
    margin-bottom: 2rem;
}

.btn-price {
    display: block;
    padding: 0.9rem 2rem;
    background: #2980b9;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: #1a5c8a;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
}

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

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

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #27ae60;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #229954;
    transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-block {
    background: #fff;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-block.featured-service,
.service-block.vip-service {
    border: 3px solid #2980b9;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header {
    background: #2c3e50;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.7rem;
    color: #34495e;
}

.service-time {
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1.5rem;
}

.btn-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: #2980b9;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Services Benefits */
.services-benefits {
    background: #fff;
    padding: 5rem 0;
}

.services-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #7f8c8d;
}

/* CTA Services */
.cta-services {
    background: #ecf0f1;
    padding: 4rem 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-services p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* About Page */
.about-story {
    background: #fff;
    padding: 5rem 0;
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.about-mission {
    background: #f8f9fa;
    padding: 5rem 0;
}

.mission-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.mission-image {
    flex: 1;
}

.mission-img {
    height: 450px;
}

.about-values {
    background: #fff;
    padding: 5rem 0;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.value-card p {
    color: #7f8c8d;
}

.about-team {
    background: #ecf0f1;
    padding: 5rem 0;
}

.about-team h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-team > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.about-approach {
    background: #fff;
    padding: 5rem 0;
}

.about-approach h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-approach > p {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #2980b9;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    color: #7f8c8d;
}

.about-why-us {
    background: #f8f9fa;
    padding: 5rem 0;
}

.about-why-us h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #34495e;
    border-bottom: 1px solid #e0e0e0;
}

.why-us-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-about {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-about p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-info {
    background: #fff;
    padding: 5rem 0;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #2980b9;
}

.contact-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    height: 400px;
    background: #ecf0f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #7f8c8d;
}

.contact-methods {
    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.method-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.method-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.btn-method {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2980b9;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-method:hover {
    background: #1a5c8a;
}

.contact-faq {
    background: #fff;
    padding: 5rem 0;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #7f8c8d;
}

.cta-contact {
    background: #ecf0f1;
    padding: 4rem 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-contact p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #2980b9;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2980b9;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #2980b9;
    color: #fff;
}

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    color: #27ae60;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-thanks {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-thanks h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-thanks p {
    opacity: 0.9;
}

.thanks-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.thanks-info p {
    margin-bottom: 0.5rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.thanks-additional {
    background: #f8f9fa;
    padding: 5rem 0;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    color: #7f8c8d;
}

/* Legal Content */
.legal-content {
    background: #fff;
    padding: 5rem 0;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2980b9;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

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

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.8rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container-split {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text-center h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-text-center h1 {
        font-size: 1.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .btn-hero,
    .btn-cta-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .problem-grid,
    .steps-flow,
    .benefits-grid,
    .values-grid,
    .methods-grid {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}