* {
    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: #333;
    background: #ffffff;
}

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

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

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

ul {
    list-style: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

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

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

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

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

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

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

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

.split-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.visual-box {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.split-visual-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-gradient {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.split-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    min-width: 50px;
}

.step p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.insight-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.insight-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.insight-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-split {
    display: flex;
    background: #f8f9fa;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.testimonial-content blockquote {
    max-width: 600px;
}

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

.testimonial-content footer {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

.testimonial-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bg {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.services-preview {
    padding: 6rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    background: #f8f9fa;
}

.trust-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.trust-list li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.5rem;
}

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-visual {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-bg {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.form-container-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.final-cta-split {
    display: flex;
    min-height: 500px;
}

.final-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    text-align: center;
}

.final-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.final-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.final-visual {
    flex: 1;
}

.final-bg {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 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 {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-accept {
    background: #667eea;
    color: #fff;
}

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

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

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

.page-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

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

.values-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

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

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

.team-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.3rem;
    color: #666;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: #666;
}

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: #fff;
}

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

.services-detail-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.service-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    flex: 1;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #333;
    font-weight: 700;
}

.service-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-body li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.7;
}

.delivery-time {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    color: #667eea;
    font-weight: 600;
    margin: 1.5rem 0;
}

.service-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.comparison-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

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

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.comparison-item p {
    color: #667eea;
    font-weight: 600;
}

.contact-split-section {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    padding: 5rem;
    background: #fff;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
    font-weight: 700;
}

.contact-detail p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-detail a {
    color: #667eea;
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual-side {
    flex: 1;
}

.contact-bg {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.faq-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

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

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

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

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

.thanks-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-top: 2rem;
}

.service-selected {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-size: 1.1rem;
    color: #333;
}

.thanks-next-steps {
    padding: 6rem 2rem;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.timeline-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
}

.timeline-step p {
    color: #666;
    line-height: 1.7;
}

.thanks-resources {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.resource-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.resource-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
}

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

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

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

.resource-link:hover {
    color: #764ba2;
}

.thanks-cta {
    padding: 6rem 2rem;
    text-align: center;
}

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

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

.legal-page {
    padding: 8rem 2rem 4rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 15px;
}

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

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #555;
    font-weight: 700;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #333;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .testimonial-split,
    .trust-split,
    .form-section-split,
    .final-cta-split,
    .contact-split-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-visual,
    .split-content-right,
    .split-visual-left,
    .trust-left,
    .trust-right,
    .form-visual-left,
    .form-container-right,
    .contact-info-side,
    .contact-visual-side {
        padding: 3rem 2rem;
    }

    .insight-container,
    .values-grid,
    .team-stats,
    .steps-timeline,
    .resource-cards {
        flex-direction: column;
    }

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

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

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

    .final-content h2,
    .services-intro h2 {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

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

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

    .legal-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .price-tag {
        font-size: 2rem;
    }
}