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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d9cdb;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.95;
}

.cta-hero {
    background: var(--accent-color);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Intro Story Section */
.intro-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.intro-lead {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* Visual Break Section */
.visual-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin: 80px 0;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    max-width: 600px;
}

.visual-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.visual-text p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-light);
}

.problem-amplify h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.problem-amplify p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.stat-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Image Text Split Section */
.image-text-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Insight Reveal Section */
.insight-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-center {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.insight-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin: 25px 20px 15px;
    color: var(--text-dark);
}

.insight-card p {
    padding: 0 20px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Builder Section */
.trust-builder {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
}

.trust-builder h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.trust-list {
    margin-bottom: 40px;
}

.trust-list li {
    font-size: 1.2rem;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
}

.trust-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.trust-statement {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
    opacity: 0.95;
}

/* Testimonials Inline Section */
.testimonials-inline {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonial-item {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-item blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 25px 20px 10px;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 20px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px;
}

.cta-service {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    margin: 0 20px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--primary-color);
}

/* Urgency Block Section */
.urgency-block {
    padding: 80px 20px;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.urgency-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.urgency-note {
    font-weight: 600;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cta-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(243, 156, 18, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: white;
}

.cookie-accept:hover {
    background: #e67e22;
}

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

.cookie-reject:hover {
    background: white;
    color: var(--text-dark);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}

.page-hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-hero-overlay p {
    font-size: 1.3rem;
    max-width: 600px;
    opacity: 0.95;
}

.page-hero-simple {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero-simple p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-story,
.philosophy,
.team-section {
    padding: 100px 20px;
}

.about-story {
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.image-full {
    margin: 80px 0;
}

.image-full img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.philosophy {
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.6rem;
    margin: 25px 20px 10px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 20px 15px;
}

.team-member p {
    padding: 0 20px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-visual {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
    background: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.values-list {
    margin-top: 30px;
}

.values-list li {
    font-size: 1.2rem;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.values-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

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

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Services Page Styles */
.services-intro {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-white);
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.service-detailed {
    padding: 60px 20px;
    background: var(--bg-light);
}

.service-detailed.service-reverse {
    background: var(--bg-white);
}

.service-detail-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-reverse .service-detail-grid {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    margin: 30px 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-left: 10px;
}

.service-comparison {
    padding: 100px 20px;
    background: var(--bg-white);
}

.comparison-table {
    display: flex;
    gap: 25px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 220px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.comparison-col.comparison-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
}

.comparison-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.comparison-featured h3 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.comparison-item {
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-price {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-featured .comparison-price {
    border-top-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-faq {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-directions h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-directions p {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 150px 20px 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.thanks-lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 50px;
}

.thanks-details p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.thanks-icon {
    margin: 40px auto 0;
    width: 80px;
    height: 80px;
    color: var(--accent-color);
}

.thanks-next-steps {
    padding: 100px 20px;
    background: var(--bg-white);
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-resources {
    padding: 100px 20px;
    background: var(--bg-light);
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
}

.thanks-resources > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.resources-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 80px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page ul li {
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-lead {
        font-size: 1.4rem;
    }

    .stat-grid,
    .insight-cards,
    .services-grid,
    .philosophy-grid,
    .team-grid,
    .comparison-table,
    .steps-grid,
    .resources-links {
        flex-direction: column;
    }

    .image-text-split,
    .service-detail-grid,
    .values-visual,
    .contact-grid {
        flex-direction: column;
    }

    .service-reverse .service-detail-grid {
        flex-direction: column;
    }

    .section-title-center,
    .page-hero-overlay h1,
    .page-hero-simple h1 {
        font-size: 2.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .comparison-col.comparison-featured {
        transform: scale(1);
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-hero,
    .cta-submit,
    .cta-primary {
        width: 100%;
        text-align: center;
    }

    .service-card,
    .insight-card,
    .team-member {
        min-width: 100%;
    }
}
