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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

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

/* Hero Split Section */
.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Intro Split Section */
.intro-split {
    padding: 100px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-right p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #f8fafc;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Services Pricing Section */
.services-pricing {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #475569;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    min-width: 200px;
}

.price {
    font-size: 2.25rem;
    color: #2563eb;
    font-weight: 800;
}

.price-old {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
}

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

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

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: #f8fafc;
}

.trust-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.btn-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    color: #1e293b;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

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

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.8;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    font-size: 1.05rem;
    color: #475569;
    padding-left: 12px;
}

.form-right {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    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);
}

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

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

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 12px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.cookie-content p {
    color: #e2e8f0;
    flex: 1;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 12px 32px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    padding: 12px 32px;
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #334155;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 0 0;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
}

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-left {
    flex: 1;
}

.story-left img {
    width: 100%;
    border-radius: 12px;
}

.story-right {
    flex: 1;
}

.story-right h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 28px;
    font-weight: 700;
}

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

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-split-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: center;
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.member-info p {
    color: #475569;
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 700;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.number-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
}

.number {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
}

.number-label {
    color: #dbeafe;
    font-size: 1.1rem;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 28px;
    font-weight: 700;
}

.approach-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-right {
    flex: 1;
}

.approach-right img {
    width: 100%;
    border-radius: 12px;
}

/* CTA About */
.cta-about {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-intro {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin: 32px 0 16px;
    font-weight: 700;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #475569;
    line-height: 1.7;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.service-price-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.price-value {
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 800;
}

.price-label-old {
    font-size: 0.9rem;
    color: #94a3b8;
}

.price-value-old {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.savings {
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

.featured-service {
    position: relative;
    padding-top: 60px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-timeline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* CTA Services */
.cta-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.2rem;
    color: #dbeafe;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-large {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

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

.contact-note {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 32px;
}

.contact-note p {
    color: #92400e;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-caption {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.95rem;
    font-style: italic;
}

/* Directions Section */
.directions-section {
    padding: 100px 0;
    background: #f8fafc;
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.direction-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* FAQ Contact Section */
.faq-contact-section {
    padding: 100px 0;
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

/* CTA Contact */
.cta-contact {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 32px;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    margin-bottom: 32px;
}

.selected-service-text {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Next Steps Section */
.next-steps-section {
    padding: 100px 0;
    background: #f8fafc;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Additional Resources */
.additional-resources {
    padding: 100px 0;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.resources-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.resource-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-intro {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 24px 0 12px;
    font-weight: 700;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 32px;
    margin-bottom: 20px;
}

.legal-section ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .intro-container,
    .trust-split,
    .form-container-split,
    .story-split,
    .approach-split,
    .service-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-left h1,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .section-header h2,
    .testimonials-section h2,
    .values-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }

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

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

    .service-price {
        align-items: flex-start;
    }

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

    .sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .legal-container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.75rem;
    }

    .btn-hero,
    .btn-cta-large,
    .btn-secondary-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .footer-container {
        gap: 40px;
    }
}