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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

/* Ad Disclosure */
.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Header - Asymmetric Layout */
.header-asymmetric {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-area {
    flex: 0 0 auto;
}

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

.brand-logo:hover {
    color: #3498db;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero - Asymmetric Creative */
.hero-asymmetric {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    padding: 2rem 0;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.hero-image-offset {
    margin-left: auto;
    max-width: 600px;
}

.hero-image-offset img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Intro Diagonal */
.intro-diagonal {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-content {
    transform: skewY(-2deg);
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.diagonal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    transform: skewY(2deg);
}

.diagonal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    transform: skewY(2deg);
}

/* Insight Overlap */
.insight-overlap {
    padding: 4rem 2rem;
    background: #ffffff;
}

.overlap-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.insight-image {
    flex: 1;
    order: 2;
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.insight-text-card {
    flex: 1;
    background: #3498db;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.2);
    order: 1;
}

.insight-text-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.insight-text-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.insight-text-card a {
    color: #ffffff;
    text-decoration: underline;
}

/* Services Preview - Scattered Layout */
.services-preview-scattered {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

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

.section-heading-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    margin-left: 10%;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.card-position-2 {
    margin-left: 5%;
}

.card-position-3 {
    margin-left: 10%;
}

.card-position-4 {
    margin-left: 3%;
}

.card-position-5 {
    margin-left: 7%;
}

.service-icon {
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
}

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

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

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

/* Testimonial Overlap */
.testimonial-overlap {
    padding: 4rem 2rem;
    background: #2c3e50;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-style: normal;
    color: #546e7a;
    font-weight: 600;
}

/* Benefits Staggered */
.benefits-staggered {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.benefits-staggered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-left {
    margin-right: auto;
    max-width: 600px;
}

.benefit-right {
    margin-left: auto;
    max-width: 600px;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Science Backed */
.science-backed {
    padding: 5rem 2rem;
    background: #ffffff;
}

.science-backed h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.science-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.science-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.science-image img {
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 2rem;
}

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

.form-intro p {
    color: #546e7a;
    font-size: 1.05rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #3498db;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.final-cta-sticky.show {
    display: block;
}

.sticky-bar {
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.sticky-bar span {
    font-weight: 600;
}

.cta-sticky-btn {
    padding: 0.75rem 1.5rem;
    background: #27ae60;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-sticky-btn:hover {
    background: #229954;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.disclaimer-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #546e7a;
}

/* References Section */
.references-section {
    padding: 3rem 2rem;
    background: #ffffff;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.references-list {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: underline;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: #95a5a6;
}

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

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

.footer-block ul li {
    margin-bottom: 0.75rem;
}

.footer-block a {
    color: #95a5a6;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #3498db;
}

.footer-block p {
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

/* About Page */
.about-hero-offset {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #3498db, #2c3e50);
    color: #ffffff;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
}

.story-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-image-block img {
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.story-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.values-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-grid h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.team-highlight {
    padding: 4rem 2rem;
    background: #ffffff;
}

.team-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.team-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546e7a;
    max-width: 900px;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.step-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
}

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

.numbers-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.numbers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.cta-about {
    padding: 5rem 2rem;
    background: #ffffff;
}

.cta-box-offset {
    max-width: 700px;
    margin: 0 0 0 auto;
    background: #3498db;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}

.cta-box-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #3498db;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Services Page */
.services-hero {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #27ae60, #2c3e50);
    color: #ffffff;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.subtitle-large {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
}

.services-detailed {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.service-detail-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.service-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-header-area h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-reverse .service-body {
    flex-direction: column-reverse;
}

.service-description h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #546e7a;
}

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

.service-image img {
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.packages-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.packages-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

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

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.package-featured {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.package-savings {
    font-size: 0.95rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.package-includes {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.package-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.package-ideal {
    font-size: 0.95rem;
    color: #546e7a;
    font-style: italic;
}

.services-cta {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.cta-container-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-container-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-container-centered p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-hero {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: #ffffff;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-main-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-form-area {
    flex: 2;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.contact-form-area > p {
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #546e7a;
    line-height: 1.6;
}

.contact-note {
    background: #3498db;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-note p {
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-info {
    padding: 4rem 2rem;
    background: #ffffff;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.directions h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.directions ul {
    list-style: none;
    padding-left: 0;
}

.directions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.directions li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.faq-contact {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thanks-icon {
    color: #27ae60;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.selected-service-info strong {
    color: #3498db;
}

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

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-additional-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.thanks-additional-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-additional-info p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.container-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.container-legal h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.container-legal h4 {
    font-size: 1.15rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.container-legal p {
    font-size: 1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

.container-legal ul,
.container-legal ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.container-legal li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .overlap-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .insight-image {
        order: 1;
    }

    .insight-text-card {
        order: 2;
        margin-left: -3rem;
        margin-top: 3rem;
    }

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

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

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

    .science-text,
    .science-image {
        flex: 1;
    }

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

    .story-image-block,
    .story-text-block {
        flex: 1;
    }

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

    .sticky-bar {
        flex-direction: row;
    }

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

    .card-reverse .service-body {
        flex-direction: row-reverse;
    }

    .service-description,
    .service-image {
        flex: 1;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

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

    .section-heading-offset {
        font-size: 2rem;
        margin-left: 0;
    }

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

    .benefit-left,
    .benefit-right {
        max-width: 100%;
        margin: 0;
    }

    .form-container-asymmetric {
        padding: 2rem;
        transform: none;
    }

    .testimonial-card {
        transform: none;
    }

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

    .sticky-bar {
        width: 100%;
    }

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.25rem;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
