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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.nav-cta {
    background: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #6b7280;
}

.btn-reject:hover {
    border-color: #9ca3af;
}

/* Hero Section - Split Screen */
.hero-split {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #111827;
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.btn-primary-large {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

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

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

.link-arrow:hover {
    gap: 0.75rem;
}

/* Trust Strip */
.trust-strip {
    background: #f3f4f6;
    padding: 2rem 0;
    text-align: center;
}

.trust-strip p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Section Split - 50/50 Layout */
.section-split {
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

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

.section-split .split-content {
    padding: 0 3rem;
}

.section-split .split-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.section-split.reverse {
    flex-direction: row-reverse;
    background: #f9fafb;
}

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

/* Stats Section */
.stats-section {
    background: #1f2937;
    color: #ffffff;
    padding: 5rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    background: #eff6ff;
    padding: 5rem 0;
}

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

.quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1f2937;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #111827;
}

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

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

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-card h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

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

.services-link {
    text-align: center;
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    background: #f9fafb;
    padding: 6rem 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbeafe;
    margin-bottom: 1rem;
}

.step h3 {
    color: #111827;
    margin-bottom: 0.75rem;
}

.step p {
    color: #6b7280;
    margin: 0;
}

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

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

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

.form-intro h2 {
    color: #111827;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #6b7280;
    font-size: 1.125rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    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%;
    background: #2563eb;
    color: #ffffff;
    padding: 1.125rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

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

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

.final-cta p {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 5rem 0 4rem;
    text-align: center;
}

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

.lead {
    font-size: 1.375rem;
    color: #dbeafe;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

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

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

.value-card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    margin: 0;
}

/* Team Section */
.team-section {
    background: #f9fafb;
    padding: 6rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #6b7280;
    font-size: 1.125rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #111827;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background: #f9fafb;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-includes h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.service-ideal {
    color: #6b7280;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 6px;
}

.service-ideal strong {
    color: #1f2937;
}

/* Pricing Notes */
.pricing-notes {
    background: #fef3c7;
    padding: 3rem 0;
}

.pricing-notes h3 {
    color: #92400e;
    margin-bottom: 1.5rem;
}

.pricing-notes p {
    color: #78350f;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-block {
    margin-bottom: 2.5rem;
}

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

.info-block p {
    color: #4b5563;
    margin: 0;
}

.info-block a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.faq-item p {
    color: #6b7280;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thanks-container h1 {
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.selected-service {
    margin-bottom: 3rem;
}

.selected-service-text {
    background: #eff6ff;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #1e40af;
    font-size: 1.125rem;
}

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

.next-steps h2 {
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1;
    min-width: 220px;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
}

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

.step-item h3 {
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

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

/* Resources Section */
.resources-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.resources-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.resource-card h3 {
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #6b7280;
    margin: 0;
}

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

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

.legal-container h1 {
    color: #111827;
    margin-bottom: 1rem;
}

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

.legal-container h2 {
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.legal-container h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

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

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

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1f2937;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image img {
        height: 400px;
    }

    .section-split {
        flex-direction: column !important;
        padding: 4rem 0;
    }

    .section-split .split-content {
        padding: 0 1.5rem;
        order: 2;
    }

    .section-split .split-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .section-split .split-image img {
        height: 350px;
    }

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

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

    .form-row {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-image img {
        height: 300px;
    }

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

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

    .contact-map img {
        height: 300px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .btn-primary,
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}