:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    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: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 1.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    text-decoration: none;
}

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

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

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--white);
}

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

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-scroll-hint {
    font-size: 1rem;
    margin-top: 3rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.content-narrow-center {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.story-intro {
    background-color: var(--light-bg);
}

.story-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

.story-paragraph.emphasis {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
}

.problem-amplify {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.insight-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    min-height: 300px;
    background-color: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-chart {
    background: linear-gradient(to top, #e74c3c 40%, #95a5a6 40%);
}

.turning-point {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 1.5rem;
}

.turning-point h2 {
    color: var(--white);
}

.section-heading-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-heading-left {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.btn-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.insight-reveal {
    padding: 5rem 1.5rem;
    background-color: var(--light-bg);
}

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

.insight-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.social-proof {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 5px solid var(--accent-color);
    border-radius: 5px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.mechanism {
    padding: 5rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.mechanism h2 {
    color: var(--white);
}

.mechanism-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.mechanism-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.mechanism-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mechanism-step p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mechanism-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-mechanism {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mechanism:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
    text-decoration: none;
}

.objection-handling {
    padding: 5rem 1.5rem;
    background-color: var(--light-bg);
}

.objection-item {
    margin: 2rem 0;
}

.objection-item h4 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.objection-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.urgency-block {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

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

.content-urgency h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.content-urgency p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.services-pricing {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

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

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

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

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

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pricing-card.featured .btn-select-service {
    background-color: var(--secondary-color);
}

.pricing-card.featured .btn-select-service:hover {
    background-color: #c0392b;
}

.form-section {
    padding: 5rem 1.5rem;
    background-color: var(--light-bg);
}

.form-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    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: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

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

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

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-cta {
    padding: 5rem 1.5rem;
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

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

.btn-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-hero {
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

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

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-period {
    font-size: 1.5rem;
    font-weight: 600;
}

.service-detail-body h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-detail-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-detail-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.btn-service-detail {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.15rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.services-cta-section {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.btn-cta-secondary,
.btn-cta-primary {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    text-decoration: none;
}

.about-story,
.about-expertise {
    padding: 3rem 1.5rem;
}

.about-story h2,
.about-expertise h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-story p,
.about-expertise p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.expertise-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-approach {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.about-results {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.result-stat {
    text-align: center;
    padding: 2rem;
}

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

.stat-label {
    font-size: 1.15rem;
    color: var(--text-light);
}

.about-values {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.about-values h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.about-cta {
    padding: 4rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-content {
    padding: 3rem 1.5rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-note {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.contact-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    min-height: 300px;
    background-color: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-faq {
    padding: 4rem 1.5rem;
    background-color: var(--light-bg);
}

.contact-faq h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-cta {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.contact-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.thanks-hero {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    opacity: 0.95;
}

.thanks-next-steps {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.thanks-next-steps h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.next-step {
    display: flex;
    gap: 2rem;
}

.next-step .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-service-info {
    padding: 3rem 1.5rem;
    background-color: var(--light-bg);
}

.thanks-service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.thanks-resources {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.thanks-resources h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

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

.resource-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.btn-resource:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    text-decoration: none;
}

.legal-page {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.85rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.35rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.cookies-table thead {
    background-color: var(--light-bg);
}

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

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

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

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

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

    .split-text,
    .split-visual {
        flex: 1;
    }

    .content-layered {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .mechanism-step {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

    .pricing-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .footer-col {
        flex: 1;
    }

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

    .approach-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .result-stat {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .resource-card {
        flex: 1;
    }

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow);
        gap: 0;
        display: none;
    }

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

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

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

    .hero-lead {
        font-size: 1.15rem;
    }

    .story-paragraph {
        font-size: 1.05rem;
    }

    .split-text h2,
    .section-heading-center,
    .section-heading-left {
        font-size: 1.85rem;
    }

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

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

    .service-price {
        font-size: 2rem;
    }

    .form-heading,
    .final-cta h2 {
        font-size: 1.85rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}