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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style-position: inside;
}

/* Container Utilities */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

/* Hero Section - Fullscreen */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    position: relative;
    padding: 80px 20px 60px;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?w=1600') center/cover;
    opacity: 0.12;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-massive {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    background: #ffffff;
    color: #1a472a;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Narrative Section */
.section-narrative {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-heading-story {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
    color: #2c3e50;
}

.story-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34495e;
}

.inline-image-wrapper {
    margin: 50px 0;
}

.inline-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Problem Amplification */
.section-problem-amplify {
    padding: 100px 20px;
    background: #ffffff;
}

.split-left,
.split-right {
    flex: 1;
}

.problem-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* Insight Section */
.section-insight {
    padding: 100px 20px;
    background: #ecf0f1;
}

.insight-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34495e;
}

.cta-inline-block {
    margin-top: 50px;
    padding: 40px;
    background: #ffffff;
    border-left: 5px solid #27ae60;
    border-radius: 6px;
}

.cta-inline-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-cta-secondary {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Solution Reveal */
.section-solution-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.solution-visual {
    flex: 1;
}

.solution-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.solution-content {
    flex: 1;
}

.solution-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.solution-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

/* Trust Building */
.section-trust-building {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.trust-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.trust-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #27ae60;
}

.trust-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

/* Testimonials Inline */
.section-testimonials-inline {
    padding: 100px 20px;
    background: #2c3e50;
}

.testimonial-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Benefits Cascade */
.section-benefits-cascade {
    padding: 100px 20px;
    background: #ffffff;
}

.benefits-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #27ae60;
    opacity: 0.3;
}

.benefit-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.benefit-text {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

/* How It Works */
.section-how-it-works {
    padding: 100px 20px;
    background: #ecf0f1;
}

.process-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.process-step {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-marker {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-description {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

/* Urgency Section */
.section-urgency {
    padding: 80px 20px;
    background: #fff3cd;
}

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

.urgency-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #856404;
}

.urgency-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #856404;
}

.urgency-text.strong {
    font-weight: 700;
    font-size: 20px;
}

/* Pricing Reveal */
.section-pricing-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.pricing-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.pricing-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #34495e;
}

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

.pricing-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid #27ae60;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #27ae60;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.pricing-value {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-pricing {
    display: inline-block;
    background: #34495e;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-pricing:hover {
    background: #2c3e50;
}

.btn-pricing.primary {
    background: #27ae60;
}

.btn-pricing.primary:hover {
    background: #229954;
}

/* Form Section */
.section-form-conversion {
    padding: 100px 20px;
    background: #ffffff;
}

.form-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-subheading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #34495e;
}

.conversion-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

/* Final CTA */
.section-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
}

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

.final-cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta-text {
    font-size: 19px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-final-cta {
    display: inline-block;
    background: #ffffff;
    color: #1a472a;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

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

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

.sticky-cta-button {
    display: block;
    background: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

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

.btn-cookie {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie.reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #7f8c8d;
}

/* Page Hero */
.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.alt-bg {
    background: #f8f9fa;
}

.content-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.content-list {
    margin: 20px 0;
    padding-left: 20px;
}

.content-list li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #ecf0f1;
    text-align: center;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
}

.btn-cta-large {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Services Pages */
.services-intro {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

.services-catalog {
    padding: 40px 20px 100px;
    background: #f8f9fa;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.service-detailed.reverse {
    flex-direction: column;
}

.service-visual {
    flex: 1;
}

.service-img {
    width: 100%;
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.service-specs-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #27ae60;
}

.service-specs {
    list-style: none;
    margin-bottom: 30px;
}

.service-specs li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #34495e;
}

.service-specs li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

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

.btn-service {
    background: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.services-benefits {
    padding: 80px 20px;
    background: #ffffff;
}

.benefits-section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.benefit-box-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #27ae60;
}

.benefit-box-text {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.contact-block {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.contact-block-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27ae60;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #34495e;
}

.contact-detail-note {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 15px;
    font-style: italic;
}

.contact-link {
    color: #27ae60;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.map-placeholder {
    background: #dfe6e9;
    padding: 100px 20px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder-text {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-faq {
    padding: 80px 20px;
    background: #ffffff;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-answer {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

/* Thanks Page */
.thanks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.thanks-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

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

.next-steps-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

.timeline-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #27ae60;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-text {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-thanks-primary {
    background: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-thanks-secondary {
    background: #34495e;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.thanks-contact-reminder {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
}

.contact-reminder-text {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-reminder-link {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.contact-reminder-link:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px 100px;
    background: #ffffff;
}

.legal-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-heading:first-child {
    margin-top: 0;
}

.legal-subheading {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-list {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-link {
    color: #27ae60;
    font-weight: 600;
}

.legal-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title-massive {
        font-size: 64px;
    }

    .container-split {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .service-detailed {
        flex-direction: row;
    }

    .service-detailed.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

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

    .benefit-box {
        flex: 1 1 calc(50% - 15px);
    }

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

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

@media (min-width: 1024px) {
    .hero-title-massive {
        font-size: 72px;
    }

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

    .benefit-box {
        flex: 1 1 calc(50% - 15px);
    }
}
