/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #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: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

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

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

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

/* Header and Navigation */
.header-split {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-links a:hover {
    color: #2c3e50;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

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

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

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

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

/* Hero Split */
.hero-split {
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 1.5rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #3498db;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background: #3498db;
    color: white;
}

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

/* Split Layout Pattern */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout.reverse {
    flex-direction: column;
}

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

.split-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 1.5rem;
}

.split-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.split-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
}

.split-content ul li {
    list-style: disc;
    color: #555;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    width: 100%;
}

.split-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Sections */
.intro-section,
.about-intro,
.philosophy-section,
.values-section,
.approach-section,
.why-choose-section,
.commitment-section,
.service-detail,
.how-it-works,
.faq-section,
.contact-section,
.map-section,
.testimonials-section,
.process-section,
.cta-section-alt,
.form-section,
.thanks-hero,
.what-to-expect,
.service-areas,
.newsletter-section {
    padding: 4rem 1.5rem;
}

.alt-bg {
    background: #f8f9fa;
}

/* Value Props */
.value-props {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.value-props h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.prop-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
}

.prop-icon {
    width: 60px;
    height: 60px;
}

.prop-icon img {
    width: 100%;
    height: 100%;
}

.prop-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.prop-card p {
    color: #555;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-intro h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-intro .cta-secondary {
    border-color: white;
    color: white;
}

.services-intro .cta-secondary:hover {
    background: white;
    color: #667eea;
}

/* Pricing Cards */
.services-pricing {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

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

.price-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.price-card p {
    color: #555;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #2980b9;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial cite {
    font-style: normal;
    color: #888;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    padding: 5rem 1.5rem;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-wrapper > p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2rem;
    background: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

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

.sticky-cta.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-btn {
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.philosophy-item p {
    color: #555;
    line-height: 1.7;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0;
}

.values-list li {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.values-list li strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Approach Steps */
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.approach-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
}

.approach-step h3 {
    font-size: 1.4rem;
    color: #2c3e50;
}

.approach-step p {
    color: #555;
    line-height: 1.7;
}

/* Why List */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.why-list li {
    list-style: disc;
    color: #555;
    line-height: 1.7;
}

/* Commitment Grid */
.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commit-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.commit-item p {
    color: #555;
    line-height: 1.7;
}

/* Service Detail */
.service-detail {
    padding: 4rem 1.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e8f5e9;
    color: #27ae60;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background: #e3f2fd;
    color: #2196f3;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1rem 0;
}

/* Process Flow */
.how-it-works {
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.flow-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.flow-step p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Grid */
.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Service Form */
.service-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.info-item p {
    color: #555;
    line-height: 1.7;
}

.info-item a {
    color: #3498db;
}

.info-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 6px;
}

.contact-note a {
    color: #2196f3;
    font-weight: 600;
}

/* Map Section */
.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.map-overlay p {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

/* Contact FAQ */
.contact-faq {
    background: #f8f9fa;
}

/* Service Areas */
.service-areas h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.area-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.area-card p {
    color: #555;
    line-height: 1.7;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-section > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    flex: 1;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #229954;
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
}

.privacy-note a {
    color: white;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

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

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-section .cta-primary {
    background: white;
    color: #667eea;
}

.cta-section .cta-primary:hover {
    background: #ecf0f1;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    padding: 5rem 1.5rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirm {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #3498db;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.contact-reminder {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

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

.contact-reminder a {
    color: #3498db;
    font-weight: 600;
}

/* What to Expect */
.what-to-expect {
    background: #f8f9fa;
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.expect-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.expect-item p {
    color: #555;
    line-height: 1.7;
}

/* Testimonial Grid */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    list-style: disc;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

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

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        gap: 4rem;
    }

    .split-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .commit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

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

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

    .expect-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

    .newsletter-form {
        flex-direction: row;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }

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

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

    .prop-card {
        flex: 1;
    }

    .pricing-cards {
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

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

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