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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    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.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

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

/* Hero Split Section */
.hero-split {
    margin-top: 80px;
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Split Intro */
.split-intro {
    display: flex;
    min-height: 500px;
}

.split-left {
    flex: 1;
    overflow: hidden;
}

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

.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.split-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #667eea;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    color: #764ba2;
}

/* Split Testimonial */
.split-testimonial {
    display: flex;
    min-height: 400px;
}

.split-left-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #1a1a1a;
}

.split-left-content blockquote {
    max-width: 500px;
}

.split-left-content p {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.split-left-content cite {
    color: #9ca3af;
    font-style: normal;
    font-weight: 600;
}

.split-right-content {
    flex: 1;
    overflow: hidden;
}

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

/* Approach Split */
.approach-split {
    display: flex;
    min-height: 600px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Split Section */
.cta-split-section {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

.cta-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.benefit-list li {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.cta-form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #ffffff;
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.cta-primary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.link-secondary {
    color: #667eea;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.link-secondary:hover {
    border-bottom-color: #667eea;
}

/* Info Split */
.info-split {
    display: flex;
    min-height: 500px;
}

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

.footer-container {
    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.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    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 {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.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: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    background: #764ba2;
}

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

.btn-reject:hover {
    background: rgba(102, 126, 234, 0.1);
}

/* Page Hero Split */
.page-hero-split {
    margin-top: 80px;
    display: flex;
    min-height: 450px;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-side h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

.hero-image-side {
    flex: 1;
    overflow: hidden;
}

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

/* Story Split */
.story-split {
    display: flex;
    min-height: 500px;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.value-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Team Split */
.team-split {
    display: flex;
    min-height: 500px;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.numbers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

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

.number-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.cta-box-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.cta-action {
    flex-shrink: 0;
}

/* Services Detail */
.services-detail {
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.service-info-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

.service-info-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

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

.service-pricing-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #6b7280;
}

.service-visual-right {
    flex: 1;
    overflow: hidden;
}

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

/* Packages Section */
.packages-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.package-card {
    flex: 1;
    min-width: 300px;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 20px;
}

.package-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 2rem;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.package-save {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 2rem;
}

/* CTA Services */
.cta-services {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-details-left {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-block a {
    color: #667eea;
    font-weight: 600;
}

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

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.location-note {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.location-note p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Contact */
.cta-contact {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

/* Thanks Container */
.thanks-container {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 2rem;
}

.thanks-selection {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.thanks-selection p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-selection p:last-child {
    margin-bottom: 0;
}

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

.thanks-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.thanks-contact p {
    font-size: 1rem;
    color: #6b7280;
}

.thanks-contact a {
    color: #667eea;
    font-weight: 600;
}

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

/* Legal Page */
.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #667eea;
    font-weight: 600;
}

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

.legal-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.legal-table thead {
    background: #f8f9fa;
}

.legal-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e7eb;
}

.legal-table td {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e5e7eb;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-testimonial,
    .approach-split,
    .cta-split-section,
    .info-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-box-split {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text h1,
    .hero-text-side h1 {
        font-size: 2rem;
    }

    .split-right h2,
    .split-left h2,
    .cta-content-left h2,
    .service-info-left h2 {
        font-size: 1.8rem;
    }

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

    .services-grid-split,
    .values-grid-split,
    .faq-grid-split {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .faq-item {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

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

    .thanks-actions a {
        width: 100%;
    }

    .legal-container {
        padding: 2.5rem 1.5rem;
    }

    .legal-table {
        font-size: 0.9rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .hero-content,
    .split-right,
    .split-left,
    .cta-content-left,
    .cta-form-right,
    .hero-text-side,
    .service-info-left {
        padding: 2.5rem 1.5rem;
    }

    .hero-text h1,
    .hero-text-side h1 {
        font-size: 1.75rem;
    }

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

    .service-card,
    .value-card {
        padding: 2rem 1.5rem;
    }

    .cta-primary,
    .cta-secondary,
    .btn-submit {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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

    .package-card {
        padding: 2.5rem 1.5rem;
    }
}
