* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #94a3b8;
    padding: 0.4rem 0.8rem;
    background: #f1f5f9;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

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

.intro-image,
.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-proposition {
    background: #f8fafc;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.value-container h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

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

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

.approach-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.approach-content,
.approach-visual {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

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

.approach-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

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

.approach-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-preview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

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

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-cta {
    text-align: center;
}

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

.btn-secondary:hover {
    background: #334155;
    transform: translateY(-2px);
}

.testimonials-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonial-content,
.testimonial-image {
    flex: 1;
    min-width: 300px;
}

.testimonial-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

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

.testimonial cite {
    color: #64748b;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-form-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.15rem;
    color: #64748b;
}

.main-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.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 ease;
}

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

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

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

.final-cta-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.final-cta-split.reverse {
    flex-direction: row-reverse;
}

.cta-image,
.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

.cta-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-large:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.main-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    line-height: 1.7;
}

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

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

.footer-section a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #64748b;
}

.about-intro-split,
.mission-split,
.expertise-split,
.team-philosophy-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.mission-split,
.team-philosophy-split {
    flex-direction: row-reverse;
}

.about-text,
.about-image,
.mission-text,
.mission-image,
.expertise-content,
.expertise-visual,
.philosophy-text,
.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.about-text h2,
.mission-text h2,
.expertise-content h2,
.philosophy-text h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.about-text p,
.mission-text p,
.expertise-content p,
.philosophy-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-image img,
.mission-image img,
.expertise-visual img,
.philosophy-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

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

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #475569;
}

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

.approach-methodology {
    background: #f8fafc;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.approach-methodology h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
}

.methodology-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-step {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.method-step h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.method-step p {
    color: #64748b;
    line-height: 1.7;
}

.cta-about {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
}

.cta-about h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.services-intro-split,
.service-detail,
.services-cta-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-intro-split,
.services-cta-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.services-cta-split {
    flex-direction: row-reverse;
}

.services-intro-text,
.services-intro-image,
.services-cta-content,
.services-cta-image {
    flex: 1;
    min-width: 300px;
}

.services-intro-text h2,
.services-cta-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

.services-intro-image img,
.services-cta-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-detail {
    margin: 5rem auto;
}

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

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-combination {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.services-combination h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 1rem;
}

.services-combination > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.combination-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.combo-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.combo-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.combo-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.combo-benefit {
    color: #2563eb;
    font-weight: 600;
    margin-top: 1rem;
}

.contact-split,
.contact-location-split,
.contact-faq-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-location-split {
    flex-direction: row-reverse;
}

.contact-info,
.contact-visual,
.location-info,
.location-image,
.faq-content,
.faq-visual {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.location-info h2,
.faq-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.contact-visual img,
.location-image img,
.faq-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.location-info h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 2rem 0 1rem;
}

.location-info ul {
    list-style: none;
}

.location-info ul li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.location-info strong {
    color: #0f172a;
}

.contact-process {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-process h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

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

.contact-cta {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-cta h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.email-display {
    color: #2563eb;
    font-weight: 600;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

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

.legal-page h4 {
    font-size: 1.25rem;
    color: #475569;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.legal-page a:hover {
    color: #1e40af;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    color: #94a3b8;
    font-style: italic;
}

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

.cookie-table thead {
    background: #f8fafc;
}

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

.cookie-table th {
    font-weight: 600;
    color: #0f172a;
}

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

.thanks-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.25rem;
    color: #64748b;
}

.thanks-details-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.thanks-info,
.thanks-image {
    flex: 1;
    min-width: 300px;
}

.thanks-info h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

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

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

.next-step .step-content h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.next-step .step-content p {
    color: #64748b;
    line-height: 1.7;
}

.selected-service-info {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.selected-service-info h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.selected-service-info p {
    color: #475569;
    font-weight: 600;
}

.thanks-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.thanks-resources {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thanks-resources > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

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

.resource-link {
    color: #2563eb;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1e40af;
}

.thanks-cta-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.thanks-cta-image,
.thanks-cta-content {
    flex: 1;
    min-width: 300px;
}

.thanks-cta-content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.thanks-cta-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.thanks-cta-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-split,
    .intro-split,
    .approach-split,
    .testimonials-split,
    .final-cta-split,
    .about-intro-split,
    .mission-split,
    .expertise-split,
    .team-philosophy-split,
    .services-intro-split,
    .service-detail-split,
    .services-cta-split,
    .contact-split,
    .contact-location-split,
    .contact-faq-split,
    .thanks-details-split,
    .thanks-cta-split {
        flex-direction: column;
        gap: 2rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

    .methodology-steps,
    .process-steps {
        flex-direction: column;
    }

    .step-number,
    .step-icon {
        display: flex;
    }
}