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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: var(--bg-white);
}

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

.intro-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-wide {
    flex: 1.3;
}

.intro-text-wide h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.intro-image-offset {
    flex: 0.7;
    position: relative;
    margin-top: 3rem;
}

.intro-image-offset img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

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

.problem-image {
    flex: 1;
}

.problem-image img {
    border-radius: 8px;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.insight-reveal {
    padding: 7rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.insight-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-content h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 1rem;
}

.insight-lead {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

.insight-cards {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.insight-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.insight-card p {
    color: rgba(255,255,255,0.85);
}

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

.story-layout {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

blockquote {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: var(--text-dark);
}

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

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

.benefits-container h2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.benefits-split-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
}

.services-pricing-section {
    padding: 7rem 5%;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.pricing-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, #faf9f7 100%);
}

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

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: var(--accent-color);
}

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

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff5e6;
    border-left: 6px solid var(--secondary-color);
    border-radius: 6px;
}

.urgency-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background: var(--primary-color);
}

.form-left-content {
    flex: 1;
    padding: 5rem 5%;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.form-left-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits li {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

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

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.final-content h2 {
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-final:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-weight: 600;
    transition: background 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.about-content {
    padding: 5rem 5%;
}

.about-section-split {
    display: flex;
    gap: 5rem;
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.team-section {
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    display: flex;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

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

.process-section {
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.step-number {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    margin-bottom: 0.7rem;
}

.cta-section-about {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.services-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.services-hero-content h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.services-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.services-detailed {
    padding: 6rem 5%;
}

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

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.service-price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

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

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

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

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.cta-services h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-services p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.contact-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.contact-hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.contact-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.contact-main {
    padding: 6rem 5%;
}

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

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

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

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

.contact-block h3 {
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

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

.contact-cta-box {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-cta-box h3 {
    margin-bottom: 1rem;
}

.btn-contact {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

.final-contact-cta h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.final-contact-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-email {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    padding: 4rem 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.thanks-container h1 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--accent-color);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

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

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

.thanks-contact {
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

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

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

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

.legal-container h1 {
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.legal-container li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

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

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

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

@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 1;
        min-height: 400px;
    }

    .intro-container,
    .problem-split,
    .story-layout,
    .about-section-split,
    .service-detail-block,
    .service-detail-block.reverse,
    .contact-split {
        flex-direction: column;
        gap: 3rem;
    }

    .insight-cards,
    .testimonials-grid {
        flex-direction: column;
    }

    .form-section-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-left,
    .form-left-content {
        padding: 3rem 5%;
    }

    .services-grid,
    .values-grid,
    .additional-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .additional-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .thanks-container {
        padding: 3rem 2rem;
    }

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

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

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