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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style-position: inside;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--highlight-color);
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

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

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.hero-content {
    flex: 1;
    padding: 5% 7%;
    color: var(--text-light);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.cta-primary {
    background: var(--highlight-color);
    color: var(--text-light);
}

.cta-primary:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.cta-secondary:hover {
    background: var(--highlight-color);
    color: var(--text-light);
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-section);
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    color: var(--text-light);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    margin: 0;
    opacity: 0.9;
}

/* Problem Section - Split */
.problem-section {
    display: flex;
    background: var(--bg-light);
    padding: 5rem 0;
}

.problem-image {
    flex: 1;
    background: var(--primary-color);
}

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

.problem-text {
    flex: 1;
    padding: 4rem 5%;
}

.problem-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Insight Section */
.insight-reveal {
    padding: 6rem 5%;
    background: var(--bg-section);
    text-align: center;
}

.insight-reveal h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    opacity: 0.7;
}

.insight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insight-item p {
    margin: 0;
    color: var(--text-gray);
}

/* Services Preview - Split */
.services-preview-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-light);
    align-items: flex-start;
}

.services-text {
    flex: 1;
    position: sticky;
    top: 120px;
}

.services-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-text p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.services-cards {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-preview {
    background: var(--bg-section);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card-preview:hover {
    border-color: var(--highlight-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-preview h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-card-preview .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.service-card-preview p {
    margin: 0;
    color: var(--text-gray);
}

/* Testimonials - Stacked */
.testimonials-stacked {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.testimonials-stacked h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial .author {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* CTA Section Full */
.cta-section-full {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--text-light);
}

.cta-section-full h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-section-full p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

/* Footer - Split */
.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
}

.footer-left p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right a:hover,
.footer-right a.active {
    opacity: 1;
    color: var(--highlight-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta button {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept {
    background: var(--highlight-color);
    color: var(--text-light);
}

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

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-reject:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* About Story - Split */
.about-story-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-section);
}

.about-story-split.reverse {
    flex-direction: row-reverse;
}

.story-image,
.story-text {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.mission-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

/* Values - Stacked */
.values-stacked {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.values-stacked h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.value-item {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-left: 4px solid var(--highlight-color);
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    margin: 0;
    color: var(--text-gray);
}

/* Approach - Split */
.approach-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-light);
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: var(--bg-section);
    text-align: center;
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.expertise-item {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

/* CTA Section About */
.cta-section-about {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--text-light);
}

.cta-section-about h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Intro */
.services-intro {
    padding: 3rem 5%;
    background: var(--bg-section);
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Service Detail - Split */
.service-detail-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--bg-section);
}

.service-image {
    flex: 1;
    min-height: 400px;
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-service {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.comparison-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.recommended {
    font-weight: 600;
    color: var(--highlight-color);
    margin: 0;
}

/* Contact Split */
.contact-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-section);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-item a {
    color: var(--highlight-color);
}

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

.contact-map {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

/* Contact Methods */
.contact-methods {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-methods h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.methods-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: var(--bg-section);
    border-radius: 12px;
    text-align: center;
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-gray);
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--text-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.thanks-content h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.selected-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-service p {
    margin: 0;
    font-size: 1.1rem;
}

/* Next Steps */
.next-steps {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Thanks CTA */
.thanks-cta {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-cta p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Preparation Tips */
.preparation-tips {
    padding: 6rem 5%;
    background: var(--bg-section);
}

.preparation-tips h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.preparation-tips > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.tips-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Legal Content */
.legal-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
    color: var(--text-light);
}

.legal-hero h1 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-hero p {
    opacity: 0.8;
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background: var(--bg-section);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .intro-asymmetric,
    .problem-section,
    .services-preview-split,
    .about-story-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-split {
        min-height: auto;
    }

    .hero-content,
    .hero-image {
        min-height: 300px;
    }

    .services-text {
        position: static;
    }

    .insight-grid,
    .comparison-grid,
    .methods-grid,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .footer-split {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .stat-card h3 {
        font-size: 2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .expertise-list {
        gap: 1rem;
    }

    .expertise-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}