* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

.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 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-left p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-block;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-text {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #1d4ed8;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.split-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.value-cards {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.value-cards h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #111827;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 280px;
}

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

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

.services-split {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    max-width: 800px;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #111827;
}

.services-intro p {
    font-size: 1.15rem;
    color: #6b7280;
}

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

.service-item {
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-details {
    flex: 1;
    padding: 2.5rem;
}

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

.service-details p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-details ul {
    margin-top: 1rem;
    color: #4b5563;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: #f9fafb;
    min-width: 220px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-inline {
    padding: 4rem 2rem;
    text-align: center;
    background: #eff6ff;
}

.cta-inline h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

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

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #1e293b;
}

.testimonial-content {
    flex: 2;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 2rem;
}

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

.testimonial-content cite {
    color: #cbd5e1;
    font-style: normal;
    font-size: 1rem;
}

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

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

.insight-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.process-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #111827;
}

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

.step {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    min-width: 280px;
    position: relative;
}

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

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.step p {
    color: #6b7280;
    line-height: 1.7;
}

.final-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
    align-items: center;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-left p {
    font-size: 1.1rem;
    color: #6b7280;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #9ca3af;
}

.modal-close:hover {
    color: #374151;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #111827;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background: #f3f4f6;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.main-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

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

.page-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-split,
.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.philosophy-split {
    background: #f9fafb;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1;
    padding: 3rem;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #111827;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.value-item p {
    color: #6b7280;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    background: #f9fafb;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.experience-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

.stat {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #6b7280;
    font-size: 1rem;
}

.commitment-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.commitment-section p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.commitment-list li {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    align-items: center;
    background: #eff6ff;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-content p {
    font-size: 1.1rem;
    color: #6b7280;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #111827;
}

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.service-body {
    padding: 2.5rem;
}

.service-body p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-body h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

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

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

.service-guarantee {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #fef3c7;
    border-radius: 8px;
    text-align: center;
}

.service-guarantee h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-guarantee p {
    font-size: 1.1rem;
    color: #78350f;
}

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

.faq-intro {
    flex: 1;
}

.faq-intro h2 {
    font-size: 2.4rem;
    color: #111827;
}

.faq-list {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.cta-final {
    text-align: center;
    padding: 4rem 2rem;
    background: #eff6ff;
}

.cta-final h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1e40af;
}

.info-block p {
    color: #4b5563;
    line-height: 1.7;
}

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

.contact-image {
    flex: 1;
}

.location-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #f9fafb;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.location-info p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.contact-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 900px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    color: #4b5563;
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #111827;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

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

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

.thanks-info {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111827;
}

.thanks-info > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    min-width: 280px;
}

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

.info-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info-card a {
    color: #2563eb;
    font-weight: 600;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

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

.legal-content ul {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .insight-split,
    .about-split,
    .philosophy-split,
    .final-cta-split,
    .cta-split,
    .services-intro-split,
    .faq-split,
    .contact-split,
    .experience-split {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

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

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

    .value-card,
    .step,
    .value-item {
        flex: 1 1 100%;
    }

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

    .service-price {
        min-width: auto;
        padding: 2rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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

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

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

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

    .modal-content {
        padding: 2rem;
    }
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-left,
    .split-content,
    .about-content {
        padding: 2rem 1.5rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}