/* 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: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #1e40af;
}

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

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #1e293b;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

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

.hero-left {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-right {
    background: #cbd5e1;
    min-height: 400px;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

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

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

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

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

.cta-inline {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.cta-inline:hover {
    border-bottom-color: #2563eb;
}

/* Intro Section (Split) */
.intro-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.intro-image {
    background: #e2e8f0;
    min-height: 300px;
}

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

.intro-text h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
}

/* Insight Section */
.insight-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

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

.insight-text h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.insight-visual {
    background: #cbd5e1;
    min-height: 350px;
}

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

/* Problem Section */
.problem-section {
    padding: 5rem 1.5rem;
    background: #1e293b;
    color: #ffffff;
}

.problem-content {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.problem-card {
    background: #334155;
    padding: 2rem;
    border-radius: 12px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

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

/* Story Section */
.story-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.story-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    background: #e2e8f0;
    min-height: 350px;
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

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

.services-container h2 {
    font-size: 2.2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-feature {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-feature h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
}

.service-feature p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
}

.service-feature .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0;
}

.btn-select {
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

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

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

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

/* Testimonials */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.testimonials-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #475569;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 1.5rem 2rem;
}

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.sticky-cta.active {
    display: block;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,99,235,0.5);
}

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

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

.page-hero-content h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: #475569;
}

/* About Page Styles */
.about-intro {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.about-text h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    background: #e2e8f0;
    min-height: 350px;
}

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

/* Approach Section */
.approach-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

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

.approach-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.approach-card h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

/* Expertise Section */
.expertise-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.expertise-visual {
    background: #cbd5e1;
    min-height: 350px;
}

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

.expertise-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.expertise-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

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

.values-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

.values-split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-item h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

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

/* Process Section */
.process-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.process-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

/* Services Detailed */
.services-intro {
    padding: 3rem 1.5rem;
    background: #f8fafc;
    text-align: center;
}

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

.services-intro-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

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

.service-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes h4,
.service-suited h4 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

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

.service-detail-right {
    background: #e2e8f0;
    min-height: 350px;
}

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

.service-form-section {
    padding: 5rem 1.5rem;
    background: #f0f9ff;
}

.service-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-form-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-form-container p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
}

.guarantee-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

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

.guarantee-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

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

.guarantee-item h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

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

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

.contact-info h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.contact-detail-item p {
    color: #475569;
    margin: 0;
}

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

.contact-note p {
    margin: 0;
    color: #1e40af;
}

.location-section {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

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

.location-container h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.location-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.location-map {
    background: #cbd5e1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

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

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

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.expertise-note {
    padding: 5rem 1.5rem;
    background: #f0f9ff;
}

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

.expertise-note-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.expertise-note-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #047857;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.submission-summary h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.submission-summary p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin: 4rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

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

.next-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #475569;
    line-height: 1.6;
}

.thanks-resources {
    margin: 3rem 0;
}

.thanks-resources h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.thanks-resources p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: inline-block;
    padding: 1rem;
    background: #ffffff;
    color: #2563eb;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.resource-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateX(5px);
}

.thanks-cta {
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

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

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

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

.legal-intro {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content strong {
    color: #1e3a8a;
}

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

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

.cookie-table th {
    background: #f8fafc;
    color: #1e3a8a;
    font-weight: 600;
}

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

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

    .nav-toggle {
        display: none;
    }

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

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

    .hero-content h1 {
        font-size: 3rem;
    }

    .intro-split,
    .insight-container,
    .story-split,
    .about-split,
    .expertise-split {
        flex-direction: row;
        align-items: center;
    }

    .intro-image,
    .insight-visual,
    .story-image,
    .about-image,
    .expertise-visual {
        flex: 1;
    }

    .intro-text,
    .insight-text,
    .story-content,
    .about-text,
    .expertise-content {
        flex: 1;
    }

    .problem-grid,
    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card,
    .approach-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .trust-text,
    .trust-stats {
        flex: 1;
    }

    .trust-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .values-split-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .service-detail-card {
        flex-direction: row;
    }

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

    .service-detail-left,
    .service-detail-right {
        flex: 1;
    }

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

    .guarantee-item {
        flex: 1;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .location-text,
    .location-map {
        flex: 1;
    }

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

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

    .resource-links {
        flex-direction: row;
        justify-content: center;
    }

    .resource-link {
        flex: 0 1 auto;
    }

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

    .footer-column {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .problem-card,
    .approach-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .stat-item {
        flex: 1 1 auto;
    }

    .trust-stats {
        flex-wrap: nowrap;
    }

    .sticky-cta {
        display: block;
    }
}