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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8903e;
    --accent-color: #5a9fb8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hero-story {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    background: linear-gradient(135deg, #2c5f7c 0%, #5a9fb8 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    color: white;
}

.hero-story h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?w=1600&h=900&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.intro-narrow {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.problem-amplify {
    background: var(--bg-light);
    padding: 6rem 0;
}

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

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.insight-reveal h2 {
    color: white;
    font-size: 2.5rem;
}

.insight-reveal p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1rem auto;
}

.trust-build {
    padding: 5rem 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.story-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.testimonial-inline {
    background: linear-gradient(135deg, #5a9fb8 0%, #2c5f7c 100%);
    padding: 4rem 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    color: white;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.attribution {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.benefits-section {
    padding: 6rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-block-one {
    background: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

.btn-primary:hover {
    background: #1e4a5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.how-it-works {
    background: var(--bg-light);
    padding: 6rem 0;
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.urgency-section {
    background: #fff3e0;
    padding: 5rem 0;
    border-left: 8px solid var(--secondary-color);
}

.services-pricing {
    padding: 7rem 0;
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, #fff9f0 0%, white 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.guarantee-section {
    background: #e8f5e9;
    padding: 5rem 0;
    text-align: center;
}

.final-testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-short {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
}

.testimonial-short p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-short .name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.form-section {
    background: var(--bg-light);
    padding: 7rem 0;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d17a2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.final-cta {
    background: linear-gradient(135deg, #2c5f7c 0%, #5a9fb8 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-overlay h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-overlay p {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

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

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

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

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

.btn-sticky {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d17a2d;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

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

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

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

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

.btn-accept:hover {
    background: #45a049;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #2c5f7c 0%, #5a9fb8 100%);
    padding: 10rem 0 6rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.legal-page {
    padding: 5rem 0;
    background: white;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

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

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.thanks-hero {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 0;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

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

.service-reference {
    background: var(--bg-light);
    padding: 4rem 0;
}

.service-display {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.thanks-info,
.thanks-contact,
.thanks-reassurance {
    padding: 3rem 0;
}

.resource-list {
    margin-left: 2rem;
}

.resource-list li {
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

.reassurance-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

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

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

.cookies-table tr:nth-child(even) {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-story h1 {
        font-size: 2.3rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

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

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

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .btn-sticky {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }
}

.scroll-to-form {
    cursor: pointer;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.service-detail.featured-service {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, #fff9f0 0%, white 100%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

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

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

.service-detail li {
    margin-bottom: 0.7rem;
}

.benefits-list-simple ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefits-list-simple li {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.contact-methods,
.faq-contact,
.location-map {
    padding: 4rem 0;
}

.method-list,
.method-item {
    margin-bottom: 2rem;
}

.method-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.about-story,
.mission-section,
.values-section,
.team-section,
.impact-section {
    padding: 4rem 0;
}

.values-grid,
.impact-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.value-item,
.impact-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-light);
}

.cta-about,
.cta-services,
.cta-contact,
.guarantee-services,
.benefits-covered {
    padding: 4rem 0;
}

.cta-about,
.cta-services,
.cta-contact {
    background: var(--bg-light);
    text-align: center;
}

.services-intro {
    padding: 3rem 0;
    text-align: center;
}

.services-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}