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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 30px rgba(0,0,0,0.12);
}

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.navbar {
    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-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 5rem 8%;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.split-image, .split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8%;
    background: var(--bg-white);
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.trust-block {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: white;
}

.trust-inner {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-preview {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    background: var(--bg-white);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.service-image, .service-details {
    flex: 1;
}

.service-image {
    overflow: hidden;
    min-height: 400px;
}

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

.service-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

.testimonial-split {
    display: flex;
    min-height: 60vh;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 8%;
    background: var(--primary-color);
    color: white;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.8;
}

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

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

.process-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.process-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-split-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.form-section-split {
    display: flex;
    min-height: 80vh;
}

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

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: var(--bg-light);
}

.form-left h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-assurance ul {
    list-style: none;
}

.form-assurance li {
    padding: 0.8rem 0;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
}

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

.form-right {
    display: flex;
    align-items: center;
    padding: 5rem 8%;
    background: var(--bg-white);
}

.main-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    min-height: 60vh;
}

.cta-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 8%;
    background: var(--accent-color);
    color: white;
}

.cta-split-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-split-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-secondary {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    background: var(--primary-color);
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

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

.hero-content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.hero-content-box h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content-box p {
    font-size: 1.3rem;
    color: var(--text-light);
}

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

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

.about-split-section {
    display: flex;
    padding: 6rem 5%;
    gap: 5%;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.split-image-stacked {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-image-stacked img {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.team-split {
    display: flex;
    min-height: 60vh;
}

.team-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: var(--bg-white);
}

.team-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.approach-section-alt {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5%;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

.cta-about-split {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.cta-content-side {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content-side h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-side p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-alt {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button-alt:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.services-hero-split {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.service-detail-section {
    padding: 4rem 5%;
}

.service-detail-section.alt-section {
    background: var(--bg-light);
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5%;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-detail-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-includes li {
    padding: 0.6rem 0;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
}

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

.pricing-notes-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.pricing-notes-content h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.pricing-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-note {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
}

.pricing-note h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: var(--accent-color);
    color: white;
}

.services-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-services {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-services:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-hero-split {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-main-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5%;
}

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

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

.contact-details h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-additional {
    padding: 2.5rem;
    background: var(--bg-light);
}

.contact-additional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-additional ul {
    list-style: none;
}

.contact-additional li {
    padding: 0.6rem 0;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
}

.contact-additional li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.contact-image-caption {
    margin-top: 1rem;
}

.contact-image-caption p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    right: 5%;
    background: rgba(44, 62, 80, 0.9);
    padding: 1.5rem;
    color: white;
}

.map-overlay p {
    font-size: 1.1rem;
}

.contact-approach-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5%;
    background: var(--bg-white);
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.approach-right {
    flex: 1;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

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

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

.contact-faq-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-faq-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
}

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

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

.contact-final-cta {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
}

.final-cta-content a {
    color: white;
    text-decoration: underline;
}

.thanks-section {
    display: flex;
    min-height: 70vh;
}

.thanks-content {
    flex: 1.5;
    padding: 6rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.next-steps-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: var(--bg-light);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.next-step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.thanks-info {
    padding: 1.5rem;
    background: var(--bg-light);
    margin-bottom: 2rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-alt, .btn-secondary-alt {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary-alt:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary-alt {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.thanks-image-section {
    flex: 1;
    overflow: hidden;
}

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

.thanks-additional {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.additional-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.additional-item {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--bg-white);
}

.additional-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.legal-page {
    padding: 6rem 5%;
    background: var(--bg-white);
}

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

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

.legal-updated {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.legal-content strong {
    color: var(--primary-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    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: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .form-section-split,
    .final-cta-split,
    .page-hero-split,
    .about-split-section,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-main-split,
    .contact-approach-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .process-split-grid,
    .values-split-grid,
    .pricing-split,
    .faq-split-grid,
    .next-steps-split,
    .additional-grid {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-content-box h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .service-detail-content h2 {
        font-size: 2rem;
    }

    .service-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .section-header h2,
    .values-section h2,
    .process-section h2 {
        font-size: 2rem;
    }

    .service-price,
    .price-display {
        font-size: 2rem;
    }

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

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

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