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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

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

ul {
    list-style-position: inside;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-right a:hover {
    color: var(--primary-color);
}

.nav-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    gap: 15px;
}

.mobile-menu a {
    padding: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
}

.btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s;
}

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.trust-left {
    flex: 1;
    padding-right: 40px;
}

.trust-left img {
    width: 100%;
    border-radius: 12px;
}

.trust-right {
    flex: 1;
    padding-left: 40px;
}

.trust-right h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.trust-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
}

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

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

.problem-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
}

.centered {
    text-align: center;
}

.split-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-highlight {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.services-left {
    flex: 1;
}

.services-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.btn-text-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-text-arrow:hover {
    transform: translateX(5px);
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-mini {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-mini h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-mini .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.quote-mark {
    font-size: 80px;
    color: var(--primary-color);
    line-height: 0.8;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-right {
    flex: 1;
}

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

.process-section {
    padding: 80px 0;
}

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

.process-split {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 32px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-visual-split {
    display: flex;
    background: var(--primary-color);
    min-height: 500px;
}

.cta-left {
    flex: 1;
}

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

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

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

.cta-right p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-right .btn-primary-large {
    background: white;
    color: var(--primary-color);
    align-self: flex-start;
}

.cta-right .btn-primary-large:hover {
    background: var(--bg-light);
}

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

.urgency-box {
    background: white;
    padding: 48px;
    border-radius: 12px;
    border-left: 6px solid var(--accent-color);
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.form-section {
    padding: 80px 0;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
}

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

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.contact-form button {
    width: 100%;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    padding: 10px 24px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.hero-content-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-content-right {
    flex: 1;
}

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

.story-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left img {
    width: 100%;
    border-radius: 12px;
}

.story-right {
    flex: 1;
}

.story-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.story-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 36px;
    border-radius: 12px;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.team-left {
    flex: 1;
}

.team-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.team-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-right {
    flex: 1;
}

.team-right img {
    width: 100%;
    border-radius: 12px;
}

.expertise-section {
    padding: 80px 0;
}

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

.expertise-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.expertise-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.expertise-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-split-alt {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.cta-content-left {
    flex: 1;
}

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

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

.cta-content-right {
    flex: 1;
}

.cta-content-right img {
    width: 100%;
    border-radius: 12px;
}

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

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

.intro-left {
    flex: 1.5;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.intro-left p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-right {
    flex: 1;
}

.price-note {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.price-note strong {
    font-size: 18px;
    display: block;
    margin-bottom: 16px;
}

.price-note ul {
    list-style: none;
}

.price-note li {
    padding: 8px 0;
    color: var(--text-light);
}

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

.service-card-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.service-content {
    flex: 2;
}

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

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    flex: 1;
    display: flex;
    align-items: center;
}

.price-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price-box .btn-primary {
    width: 100%;
    padding: 14px;
}

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

.package-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
}

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

.package-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.package-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.package-item p {
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.package-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.cta-left-img {
    flex: 1;
}

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

.cta-right-content {
    flex: 1;
    padding: 60px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.cta-right-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-right-content .btn-primary-large {
    background: white;
    color: var(--primary-color);
    align-self: flex-start;
}

.contact-main {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 36px;
}

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

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

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

.contact-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box-centered {
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-centered p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-details {
    margin-bottom: 40px;
    text-align: left;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.thanks-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 17px;
}

.thanks-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 968px) {
    .hero-split,
    .trust-split,
    .testimonial-split,
    .cta-visual-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .cta-split-alt,
    .service-card-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .trust-left,
    .trust-right,
    .testimonial-left,
    .cta-right,
    .hero-content-left,
    .story-right,
    .team-left,
    .cta-content-left,
    .form-left,
    .form-right,
    .cta-right-content {
        padding: 40px 20px;
    }

    .hero-left h1,
    .trust-right h2,
    .cta-right h2,
    .hero-content-left h1,
    .story-right h2,
    .team-left h2 {
        font-size: 36px;
    }

    .services-highlight,
    .form-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .process-split,
    .values-grid,
    .expertise-list,
    .package-grid {
        flex-direction: column;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .btn-primary-large,
    .btn-outline {
        padding: 14px 24px;
        font-size: 15px;
    }

    .split-cards {
        flex-direction: column;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        width: 100%;
        text-align: center;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}