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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-dark: #1A1A1A;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #DEE2E6;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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);
}

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

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

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

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

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

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

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

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #2980B9;
    color: white;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: var(--spacing-xl) 5% var(--spacing-xl) 8%;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.split-intro {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.split-left-content,
.split-right-content {
    flex: 1;
}

.split-left-content {
    padding-right: 3rem;
}

.split-left-content img {
    border-radius: 8px;
}

.split-right-content {
    padding: 0 8% 0 5%;
}

.split-right-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
}

.split-right-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.inline-cta {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.inline-cta:hover {
    color: #2980B9;
    text-decoration: underline;
}

.services-preview {
    padding: var(--spacing-xl) 5%;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card-split {
    display: flex;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card-split:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

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

.service-visual,
.service-content {
    flex: 1;
}

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

.service-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.btn-service,
.btn-service-detail,
.btn-package {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-service:hover,
.btn-service-detail:hover,
.btn-package:hover {
    background: #2980B9;
    transform: translateX(5px);
}

.trust-split {
    display: flex;
    padding: var(--spacing-xl) 8%;
    gap: var(--spacing-lg);
    background: var(--bg-light);
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
}

.trust-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

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

.form-section {
    padding: var(--spacing-xl) 5%;
    background: var(--primary-color);
}

.form-container-split {
    display: flex;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
    color: white;
    padding-right: var(--spacing-md);
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
}

.form-wrapper {
    flex: 1;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #C0392B;
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 8%;
    gap: var(--spacing-lg);
    background: var(--bg-light);
}

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

.cta-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
}

.cta-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-content-right {
    text-align: center;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s;
}

.cta-large:hover {
    background: #C0392B;
    transform: scale(1.05);
}

.cta-subtext {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-split {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 5% var(--spacing-md);
}

.footer-main {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #2980B9;
}

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

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #C0392B;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.page-hero-split {
    padding: var(--spacing-xl) 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-split {
    display: flex;
    padding: var(--spacing-xl) 8%;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
}

.about-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-right img {
    border-radius: 12px;
}

.values-split {
    padding: var(--spacing-xl) 8%;
    background: var(--bg-light);
}

.values-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.values-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

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

.team-split {
    padding: var(--spacing-xl) 8%;
}

.team-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.team-header h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.approach-split {
    display: flex;
    padding: var(--spacing-xl) 8%;
    gap: var(--spacing-lg);
    background: var(--bg-light);
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left img {
    border-radius: 12px;
}

.approach-right h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
}

.approach-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step {
    display: flex;
    gap: var(--spacing-sm);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
}

.cta-about {
    padding: var(--spacing-xl) 8%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.services-detailed {
    padding: var(--spacing-xl) 5%;
}

.service-detail-split {
    display: flex;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
    align-items: center;
}

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

.service-detail-content,
.service-detail-visual {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing-detail {
    margin: var(--spacing-md) 0;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-detail-visual img {
    border-radius: 12px;
}

.service-packages {
    padding: var(--spacing-xl) 8%;
    background: var(--bg-light);
}

.packages-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.packages-header h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.packages-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.packages-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.package-includes {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: var(--spacing-md) 0;
}

.package-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.services-faq {
    padding: var(--spacing-xl) 8%;
}

.services-faq h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-split {
    display: flex;
    gap: var(--spacing-lg);
}

.faq-left,
.faq-right {
    flex: 1;
}

.faq-item {
    margin-bottom: var(--spacing-md);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

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

.cta-services {
    padding: var(--spacing-xl) 8%;
    background: var(--bg-light);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-split {
    display: flex;
    padding: var(--spacing-xl) 8%;
    gap: var(--spacing-xl);
}

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    font-weight: 700;
}

.contact-block {
    margin-bottom: var(--spacing-lg);
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: var(--spacing-xs);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: var(--spacing-md);
    color: white;
}

.directions-section {
    padding: var(--spacing-xl) 8%;
    background: var(--bg-light);
}

.directions-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.directions-split {
    display: flex;
    gap: var(--spacing-md);
}

.direction-card {
    flex: 1;
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.direction-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.contact-cta {
    padding: var(--spacing-xl) 8%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.thanks-hero {
    padding: var(--spacing-xl) 8%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--spacing-md);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.thanks-service {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.step-item {
    flex: 1;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.step-num {
    background: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.thanks-resources {
    padding: var(--spacing-xl) 8%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-resources > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.resource-cards {
    display: flex;
    gap: var(--spacing-md);
    text-align: left;
}

.resource-card {
    flex: 1;
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.resource-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    padding: var(--spacing-xl) 8%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 800;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-container ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .split-intro,
    .services-split-grid .service-card-split,
    .trust-split,
    .form-container-split,
    .final-cta-split,
    .about-split,
    .values-grid,
    .team-grid,
    .approach-split,
    .service-detail-split,
    .packages-grid,
    .faq-split,
    .contact-split,
    .directions-split,
    .steps-grid,
    .resource-cards {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .hero-right img {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .nav-right a:not(.nav-cta) {
        display: none;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .values-intro h2,
    .team-header h2 {
        font-size: 2rem;
    }

    .split-left-content {
        padding-right: 0;
    }

    .split-right-content {
        padding: 0 5%;
    }
}
