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

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

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

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

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    position: relative;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Hero Section - Split Screen */
.hero-split {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary, .cta-secondary, .cta-button, .cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

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

.cta-button {
    background-color: #1f2937;
    color: #fff;
}

.cta-button:hover {
    background-color: #111827;
    transform: translateY(-3px);
}

.cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    background-color: #2563eb;
    color: #fff;
}

.cta-large:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* Split Sections */
.trust-foundation, .approach-split, .about-split, .values-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.content-left, .content-right, .approach-left, .approach-right,
.about-left, .about-right, .values-left, .values-right {
    flex: 1;
    padding: 4rem;
}

.content-left img, .approach-left img, .about-left img, .values-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.content-right h2, .approach-right h2, .about-right h2, .values-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-right p, .approach-right p, .about-right p, .values-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.content-left {
    background-color: #f3f4f6;
}

.approach-split {
    background-color: #f9fafb;
}

.values-right {
    background-color: #f3f4f6;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

.values-list strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

/* Insight Block */
.insight-block {
    padding: 6rem 2rem;
    background-color: #1f2937;
    color: #fff;
}

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

.insight-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 3rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.insight-card p {
    line-height: 1.8;
    color: #d1d5db;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.service-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: #374151;
}

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

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

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

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.testimonial-left {
    flex: 1.5;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
}

.testimonial-right {
    flex: 1;
    background-color: #e5e7eb;
}

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

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-content .cta-large {
    background-color: #fff;
    color: #667eea;
}

.cta-content .cta-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Page Hero */
.page-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Services Intro */
.services-intro {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

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

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Service Detail */
.service-detail {
    padding: 4rem 2rem;
}

.service-detail.alt-layout {
    background-color: #f9fafb;
}

.service-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
}

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

.service-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background-color: #1f2937;
    color: #fff;
}

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

.process-container h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 3rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Services CTA, About CTA */
.services-cta, .about-cta, .contact-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container, .cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2, .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-container p, .cta-box p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-box {
    background-color: #f3f4f6;
    padding: 3rem;
    border-radius: 16px;
}

.cta-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

/* Mission Statement */
.mission-statement {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.mission-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Team Approach */
.team-approach {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.5rem;
    color: #1a1a1a;
}

.team-member p {
    margin: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 4rem 2rem;
}

.partners-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.partners-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Contact Main */
.contact-main {
    padding: 4rem 2rem;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

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

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

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

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

/* Thanks Section */
.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
    color: #374151;
}

.service-confirmation strong {
    color: #1a1a1a;
}

#selectedService {
    color: #2563eb;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    min-height: 100vh;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

.legal-container ul, .legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    margin-bottom: 0.75rem;
}

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

.legal-container a:hover {
    color: #1d4ed8;
}

.legal-container strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

.cookie-table td {
    color: #4b5563;
}

/* Footer */
.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split, .trust-foundation, .approach-split,
    .about-split, .values-split, .testimonial-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .insight-grid, .process-steps, .team-grid {
        flex-direction: column;
    }

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

    .contact-details {
        flex-direction: column;
    }

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

    .footer-section {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .ad-disclosure {
        display: none;
    }

    .hero-left, .content-left, .content-right,
    .approach-left, .approach-right {
        padding: 2rem;
    }

    .hero-left h1, .hero-content h1 {
        font-size: 2rem;
    }

    .lead-text, .large-text {
        font-size: 1rem;
    }

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

    .faq-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

    .footer-section {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 1.75rem;
    }
}