/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

/* Asymmetric Navigation */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Offset Layout */
.hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-content-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.cta-inline {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #764ba2;
}

/* Intro Diagonal */
.intro-diagonal {
    padding: 80px 20px;
    background-color: #f8f9fa;
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #f8f9fa;
    transform: skewY(-2deg);
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.content-narrow p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

/* Problem Amplification - Split Irregular */
.problem-amplification {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.text-block-overlap {
    flex: 1;
    padding: 30px;
    background-color: #fff5e6;
    border-left: 5px solid #f39c12;
    position: relative;
}

.text-block-overlap h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-block-overlap p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.image-offset-right {
    flex: 1;
}

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

/* Insight Reveal */
.insight-reveal {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 100%);
}

.content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.insight-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.card-position-1 {
    margin-left: 0;
}

.card-position-2 {
    margin-left: 20px;
}

.card-position-3 {
    margin-left: 40px;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e7ee;
    position: absolute;
    top: 15px;
    right: 20px;
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Trust Building */
.trust-building {
    padding: 70px 20px;
    background-color: #667eea;
}

.testimonial-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.testimonial-content {
    flex: 2;
    color: #ffffff;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
}

/* Services Reveal */
.services-reveal {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-header-offset {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header-offset h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: relative;
}

.card-tall {
    min-height: 400px;
}

.card-wide {
    padding: 50px;
}

.card-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f39c12;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-featured h3 {
    color: #ffffff;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.card-featured .service-features li::before {
    color: #ffffff;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin: 25px 0;
}

.card-featured .service-price {
    color: #ffffff;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    background-color: #5568d3;
}

.card-featured .btn-select-service {
    background-color: #ffffff;
    color: #667eea;
}

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

/* Benefits Stacked */
.benefits-stacked {
    padding: 70px 20px;
    background-color: #ffffff;
}

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

.benefits-list h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #667eea;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

/* Testimonials Block */
.testimonials-block {
    padding: 70px 20px;
    background-color: #f0f4f8;
}

.testimonials-block h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-short {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-short p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2c3e50;
}

.testimonial-short span {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.form-container-offset {
    max-width: 650px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    opacity: 0.95;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e7ee;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 70px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col-brand p {
    color: #b0bec5;
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #243240;
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b0bec5;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3e50;
    color: #788995;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2ecc71;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(46, 204, 113, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 30px rgba(46, 204, 113, 0.6);
}

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

.hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.95;
}

/* About Story */
.about-story {
    padding: 70px 20px;
    background-color: #ffffff;
}

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

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

/* Values Section */
.values-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

.approach-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-step {
    margin-bottom: 30px;
}

.approach-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #667eea;
}

.approach-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

/* Mission Statement */
.mission-statement {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.mission-statement h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 25px;
}

.mission-text {
    font-size: 19px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Detailed */
.services-intro {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-detailed {
    padding: 40px 20px 80px;
    background-color: #ffffff;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-right {
    flex-direction: column;
}

.service-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px;
    position: relative;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f39c12;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}

.service-info h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-featured .service-info h3,
.featured-header h3 {
    color: #ffffff;
}

.service-tagline {
    font-size: 17px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-featured .service-tagline,
.featured-header .service-tagline {
    color: #ffffff;
    opacity: 0.95;
}

.service-info p,
.featured-description p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-featured .service-info p,
.service-featured .featured-description p {
    color: #ffffff;
}

.service-info h4,
.featured-description h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-featured .service-info h4,
.service-featured .featured-description h4 {
    color: #ffffff;
}

.service-info ul,
.featured-description ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-info ul li,
.featured-description ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-featured ul li {
    color: #ffffff;
}

.service-info ul li::before,
.featured-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-featured ul li::before {
    color: #ffffff;
}

.service-price-block {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.service-featured .price-label {
    color: #ffffff;
    opacity: 0.9;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
}

.service-featured .price-amount,
.price-amount-large {
    color: #ffffff;
    font-size: 42px;
}

.service-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-price {
    text-align: center;
}

.price-note {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-featured {
    background-color: #ffffff;
    color: #667eea;
}

.btn-featured:hover {
    background-color: #f0f0f0;
}

/* Additional Services */
.additional-services {
    padding: 70px 20px;
    background-color: #f0f4f8;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.additional-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.additional-card p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.additional-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

/* CTA Section */
.cta-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-box h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

.contact-map-placeholder {
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

/* Contact FAQ */
.contact-faq {
    padding: 70px 20px;
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 80px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.thanks-icon {
    margin-bottom: 25px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 19px;
    opacity: 0.95;
}

.thanks-info {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-selected-service {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.service-confirmation {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f0f4f8;
    border-radius: 10px;
}

.service-confirmation h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-confirmation p {
    font-size: 16px;
    color: #555;
}

.thanks-resources {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.resource-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 25px rgba(0,0,0,0.15);
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #667eea;
}

.resource-card p {
    font-size: 15px;
    color: #555;
}

.thanks-contact {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.contact-email-display {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

/* Legal Page */
.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-update {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #667eea;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-offset {
        flex-direction: row;
        align-items: center;
        padding: 80px 40px;
    }

    .hero-content-left {
        margin-bottom: 0;
        padding-right: 40px;
    }

    .hero-content-left h1 {
        font-size: 52px;
    }

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

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

    .insight-card {
        flex: 0 0 calc(50% - 15px);
    }

    .card-position-1,
    .card-position-2,
    .card-position-3 {
        margin-left: 0;
    }

    .testimonial-asymmetric {
        flex-direction: row;
        text-align: left;
    }

    .services-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 18px);
    }

    .card-featured {
        flex: 0 0 100%;
    }

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

    .testimonials-layout {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

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

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

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .approach-layout {
        flex-direction: row;
    }

    .service-block {
        flex-direction: row;
        align-items: center;
    }

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

    .service-info,
    .service-visual {
        flex: 1;
    }

    .featured-body {
        flex-direction: row;
    }

    .featured-description {
        flex: 2;
    }

    .featured-price {
        flex: 1;
    }

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

    .additional-card {
        flex: 1;
    }

    .contact-layout {
        flex-direction: row;
    }

    .resource-links {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

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

    .step-item {
        flex: 0 0 calc(50% - 13px);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-asymmetric {
        padding: 25px 60px;
    }

    .hero-offset {
        padding: 100px 60px;
    }

    .hero-content-left h1 {
        font-size: 58px;
    }

    .cards-staggered {
        flex-direction: column;
    }

    .insight-card {
        flex: 1;
    }

    .card-position-1 {
        margin-left: 0;
    }

    .card-position-2 {
        margin-left: 60px;
    }

    .card-position-3 {
        margin-left: 120px;
    }

    .services-grid-asymmetric {
        flex-wrap: wrap;
    }

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

    .value-card {
        flex: 1;
    }

    .next-steps {
        flex-wrap: nowrap;
    }

    .step-item {
        flex: 1;
    }
}