/* 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: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #22C55E;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

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

.btn-cookie.btn-secondary:hover {
    background: #ffffff;
    color: #2d3748;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    padding: 5rem 0;
    background: #ffffff;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-narrow {
    flex: 1.2;
}

.content-narrow h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.content-narrow p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.stats-block {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Services Highlight */
.services-highlight {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 3rem;
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #2563eb;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 40%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22C55E;
    margin: 1rem 0;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Methodology Section - Split Container */
.methodology-section {
    padding: 5rem 0;
    background: #ffffff;
}

.split-container {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

.method-visual,
.story-visual,
.impact-visual {
    flex: 1;
    overflow: hidden;
}

.method-visual img,
.story-visual img,
.impact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-text,
.story-text,
.impact-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.method-text h2,
.story-text h2,
.impact-text h2 {
    margin-bottom: 2rem;
    color: #1e293b;
}

.method-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.point h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.point p {
    color: #475569;
}

/* Testimonial Spread */
.testimonial-spread {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.testimonial-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.testimonial-item {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-item.featured {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.testimonial-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: normal;
}

/* Why Choose Offset */
.why-choose-offset {
    padding: 5rem 0;
    background: #ffffff;
}

.offset-grid {
    display: flex;
    gap: 4rem;
    align-items: start;
}

.why-content {
    flex: 1.3;
}

.why-content h2 {
    margin-bottom: 1.5rem;
}

.why-content p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.why-features {
    flex: 0.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    padding: 1rem 1rem 1rem 3rem;
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
    color: #334155;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #22C55E;
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA Split Section */
.cta-split-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.cta-split-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-left-panel {
    flex: 1;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left-panel h2 {
    margin-bottom: 1rem;
}

.cta-left-panel p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cta-right-panel {
    flex: 1;
    padding: 4rem 3rem;
}

/* Forms */
.booking-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: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Location Info */
.location-info {
    padding: 4rem 0;
    background: #ffffff;
}

.location-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.location-details {
    flex: 1;
    padding: 2rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.location-details p {
    color: #475569;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-hero .lead {
    margin: 0 auto;
}

/* About Page Sections */
.story-section,
.impact-section {
    padding: 5rem 0;
}

.story-section {
    background: #ffffff;
}

.impact-section {
    background: #f8fafc;
}

.story-text p,
.impact-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.mission-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

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

.mission-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.approach-section {
    padding: 5rem 0;
    background: #ffffff;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

.approach-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #475569;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.team-section h2 {
    margin-bottom: 2rem;
}

.team-info {
    max-width: 800px;
}

.team-info p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 0;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.value-item h4 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #475569;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.cta-content-center h2 {
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

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

/* Services Page */
.services-intro {
    padding: 3rem 0;
    background: #ffffff;
}

.intro-split {
    display: flex;
    gap: 3rem;
    align-items: start;
}

.intro-text {
    flex: 1.5;
}

.intro-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.intro-highlight {
    flex: 1;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.intro-highlight p {
    color: #334155;
    line-height: 1.7;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail:nth-child(even) {
    background: #f8fafc;
}

.service-detail:nth-child(odd) {
    background: #ffffff;
}

.service-container {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.service-image-side {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.service-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.service-content-side h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-content-side > p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features h4 {
    color: #334155;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    color: #475569;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
    line-height: 1;
}

.service-format {
    margin-bottom: 2rem;
}

.service-format p {
    color: #475569;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22C55E;
}

.price-label {
    color: #64748b;
    font-size: 1rem;
}

.service-extras {
    padding: 5rem 0;
    background: #1e293b;
    color: #ffffff;
}

.service-extras h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.extra-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.extra-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.extra-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.extra-price {
    font-weight: 700;
    color: #22C55E;
    font-size: 1.25rem;
}

.booking-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

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

.booking-cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.booking-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-main {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    color: #2563eb;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    color: #475569;
    line-height: 1.7;
}

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.location-notes h4 {
    margin-bottom: 1rem;
}

.location-notes ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-notes li {
    color: #475569;
    line-height: 1.7;
}

.contact-faqs {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-faqs h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.faq-item h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

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

.faq-item a {
    color: #2563eb;
    font-weight: 600;
}

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

.contact-cta {
    padding: 5rem 0;
    background: #ffffff;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: #475569;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

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

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

.thanks-hero h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.thanks-hero .lead {
    margin: 0 auto;
    color: #475569;
}

.next-steps {
    padding: 5rem 0;
    background: #ffffff;
}

.steps-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.service-selected {
    padding: 3rem 0;
    background: #f8fafc;
}

.selected-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #22C55E;
}

.selected-box h3 {
    color: #334155;
    margin-bottom: 0.75rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.thanks-resources {
    padding: 5rem 0;
    background: #ffffff;
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.resource-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-contact-info {
    padding: 3rem 0;
    background: #f8fafc;
}

.contact-reminder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #475569;
    line-height: 1.7;
}

.contact-reminder a {
    color: #2563eb;
    font-weight: 600;
}

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

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

.legal-page h1 {
    margin-bottom: 0.5rem;
}

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

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.legal-page p {
    color: #475569;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

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

.legal-page a {
    color: #2563eb;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-split,
    .split-container,
    .split-layout,
    .offset-grid,
    .cta-split-container,
    .location-grid,
    .contact-container,
    .service-container {
        flex-direction: column;
    }

    .split-container.reverse,
    .service-container.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 300px;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .testimonial-item.featured {
        transform: scale(1);
    }

    .approach-card,
    .value-item,
    .extra-card,
    .step-item,
    .resource-card,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.125rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left,
    .method-text,
    .story-text,
    .impact-text,
    .cta-left-panel,
    .cta-right-panel {
        padding: 2.5rem 1.5rem;
    }

    .intro-split {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}
