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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

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

.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button-large {
    font-size: 20px;
    padding: 20px 48px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.intro-split {
    display: flex;
    min-height: 500px;
    background: var(--bg-light);
}

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

.intro-visual,
.split-visual {
    flex: 1;
    overflow: hidden;
}

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

.intro-content,
.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2,
.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-content p,
.split-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.benefits-grid {
    padding: 100px 0;
    background: var(--bg-white);
}

.benefits-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 16px;
}

.process-split {
    display: flex;
    background: var(--bg-light);
}

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    font-size: 16px;
}

.services-preview {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.services-split-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-highlight {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-highlight:hover {
    transform: scale(1.03);
}

.service-highlight img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.testimonials-split {
    display: flex;
    background: var(--primary-color);
    color: white;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
}

.testimonial-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: white;
}

.testimonial {
    margin-bottom: 40px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    opacity: 0.9;
    font-style: normal;
}

.testimonial-visual {
    flex: 1;
    overflow: hidden;
}

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

.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.form-intro {
    flex: 1;
    padding: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-medium);
    position: relative;
    padding-left: 32px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-privacy {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cta-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--bg-light);
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #059669;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

.page-hero-split {
    display: flex;
    min-height: 450px;
    background: var(--bg-light);
}

.hero-text-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text-side p {
    font-size: 20px;
    color: var(--text-medium);
}

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

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

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

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

.story-visual {
    flex: 1;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.values-grid {
    padding: 100px 0;
    background: var(--bg-white);
}

.values-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-cards {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    font-size: 16px;
}

.expertise-split {
    display: flex;
    background: var(--bg-light);
}

.expertise-content {
    flex: 1;
    padding: 80px 60px;
}

.expertise-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.expertise-item {
    margin-bottom: 36px;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expertise-item p {
    color: var(--text-medium);
    font-size: 16px;
}

.expertise-visual {
    flex: 1;
    overflow: hidden;
}

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

.numbers-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.numbers-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: white;
}

.numbers-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    min-width: 200px;
}

.big-number {
    display: block;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 12px;
}

.number-item p {
    font-size: 18px;
    opacity: 0.9;
}

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

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

.approach-visual {
    flex: 1;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 0 40px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-medium);
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 18px;
    color: var(--text-medium);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service-btn {
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.packages-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.packages-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.packages-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.package-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.package-card > p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.package-price {
    margin: 24px 0;
}

.original-price {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.package-discount {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.savings {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
    background: var(--bg-light);
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.office-info {
    padding: 100px 0;
    background: var(--bg-white);
}

.office-info h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.office-content-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.office-text {
    flex: 1;
}

.office-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.office-text h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.office-text ul {
    list-style: none;
}

.office-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}

.office-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.office-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 36px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
}

.cta-contact {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-contact p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-contact a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.cta-contact .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-contact .cta-button:hover {
    background: var(--bg-light);
}

.thanks-hero-split {
    display: flex;
    min-height: 500px;
    background: var(--bg-light);
}

.thanks-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-selected {
    padding: 20px;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-size: 18px;
}

.thanks-visual {
    flex: 1;
    overflow: hidden;
}

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

.next-steps {
    padding: 100px 0;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.steps-split {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.next-step {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.next-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.next-step p {
    color: var(--text-medium);
    font-size: 16px;
}

.while-waiting-split {
    display: flex;
    background: var(--bg-light);
}

.waiting-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.waiting-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

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

.resource-list li {
    margin-bottom: 16px;
}

.resource-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.resource-list a:hover {
    text-decoration: underline;
}

.waiting-visual {
    flex: 1;
    overflow: hidden;
}

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

.contact-alternative {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.contact-alternative h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-alternative p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.email-large {
    font-size: 28px !important;
    margin: 32px 0 !important;
}

.email-large a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.email-large a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-medium);
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .services-split-layout,
    .testimonials-split,
    .form-split,
    .final-cta-split,
    .page-hero-split,
    .story-split,
    .expertise-split,
    .approach-split,
    .service-detail-split,
    .contact-info-split,
    .office-content-split,
    .faq-split,
    .thanks-hero-split,
    .while-waiting-split {
        flex-direction: column;
    }

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

    .hero-text h1,
    .hero-text-side h1 {
        font-size: 36px;
    }

    .hero-content,
    .intro-content,
    .split-content,
    .testimonial-content,
    .form-intro,
    .cta-content,
    .story-content,
    .expertise-content,
    .approach-content,
    .service-detail-content,
    .contact-details,
    .waiting-content,
    .thanks-content {
        padding: 40px 24px;
    }

    .hero-visual,
    .intro-visual,
    .split-visual,
    .testimonial-visual,
    .cta-visual,
    .hero-image-side,
    .story-visual,
    .expertise-visual,
    .approach-visual,
    .service-detail-visual,
    .contact-visual,
    .waiting-visual,
    .thanks-visual {
        height: 300px;
    }

    .benefits-cards,
    .values-cards,
    .services-split-layout,
    .packages-grid,
    .steps-split {
        flex-direction: column;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

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