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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #f0f0f0;
}

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

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1a1a1a;
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

/* Hero Split Section */
.hero-split {
    min-height: 100vh;
    display: flex;
    padding-top: 70px;
}

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

.hero-left {
    padding: 4rem;
    background: #f8f8f8;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.hero-right {
    overflow: hidden;
    position: relative;
}

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

/* Split Container - Core Layout */
.split-container {
    display: flex;
    min-height: 600px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right h2,
.split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-right p,
.split-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

/* Intro Section */
.intro-section {
    background: #ffffff;
}

.intro-section .split-left {
    background: #1a1a1a;
}

/* Services Preview */
.services-preview {
    background: #f8f8f8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-cta {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Benefits Split */
.benefits-split {
    background: #ffffff;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    line-height: 1;
}

.benefit-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #4a4a4a;
}

/* Process Section */
.process-section {
    background: #1a1a1a;
    color: #ffffff;
}

.process-section .section-header {
    color: #ffffff;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.step-content {
    flex: 1;
}

.step-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

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

.step-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.step-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Testimonials */
.testimonials-section {
    background: #f8f8f8;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #4a4a4a;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    color: #ffffff;
}

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

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-right {
    flex: 1;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Page Hero */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero.about-hero {
    padding: 8rem 2rem;
    background: #ffffff;
    text-align: left;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    margin-bottom: 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

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

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

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.price-label {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-note {
    font-size: 0.9rem;
    color: #888888;
}

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

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

/* Services Guarantee */
.services-guarantee {
    background: #1a1a1a;
    color: #ffffff;
}

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

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

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

.guarantee-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

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

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

/* CTA Simple */
.cta-simple {
    background: #f8f8f8;
}

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

.cta-content.centered {
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-subtext {
    font-size: 1rem !important;
    color: #888888 !important;
}

/* Story Section */
.story-section {
    background: #ffffff;
}

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

.story-text h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    background: #f8f8f8;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.value-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.value-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: #ffffff;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: #888888;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    background: #f8f8f8;
}

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

.number-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.number-label {
    display: block;
    color: #4a4a4a;
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    background: #ffffff;
}

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

.partners-list p {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a4a4a;
}

/* Contact Main */
.contact-main {
    background: #ffffff;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item svg {
    flex-shrink: 0;
    color: #1a1a1a;
}

.info-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-text a {
    color: #1a1a1a;
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem !important;
    color: #888888 !important;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-marker {
    margin-bottom: 0.5rem;
}

.map-label {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.location-description p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-note {
    font-size: 0.95rem !important;
    color: #888888 !important;
    margin-top: 1.5rem !important;
}

/* Contact CTA */
.contact-cta {
    background: #f8f8f8;
}

.email-link {
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 2px solid #1a1a1a;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Thank You Page */
.thankyou-hero {
    padding: 8rem 2rem 4rem;
    background: #f8f8f8;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.success-icon svg {
    margin: 0 auto;
}

.thankyou-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thankyou-content .lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.thankyou-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Next Steps */
.next-steps {
    background: #ffffff;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.timeline-time {
    display: inline-block;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 600;
}

/* Resources Section */
.resources-section {
    background: #f8f8f8;
}

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

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

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

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

.resource-link {
    font-weight: 600;
    color: #1a1a1a;
}

/* Contact Reminder */
.contact-reminder {
    background: #ffffff;
}

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

.reminder-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.reminder-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 2rem 0 !important;
}

.contact-hours {
    color: #888888 !important;
}

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

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-content a {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: #f8f8f8;
    font-weight: 600;
}

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

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

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-column a {
    color: #cccccc;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 2rem;
    }

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

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

    .service-card {
        min-width: 100%;
    }

    .step-split,
    .step-split.reverse {
        flex-direction: column;
    }

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

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

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

    .service-detail-content {
        padding: 2rem;
    }

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

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

    .value-split,
    .value-split.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    section {
        padding: 3rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 45%;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
    }
}