/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2D6A4F;
    --primary-dark: #1B4332;
    --primary-light: #52B788;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-gray: #5A5A5A;
    --text-light: #8A8A8A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #2A2A2A;
    --border-color: #E5E5E5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    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;
}

/* Navigation - Split Style */
.nav-split {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

.btn-outline-light {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

.btn-text-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
}

.btn-text-arrow:hover {
    color: var(--primary-dark);
}

/* Services Preview Split */
.services-preview-split {
    display: flex;
    min-height: 700px;
}

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

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

.split-right {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--bg-white);
}

.content-box {
    max-width: 600px;
}

.content-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-box > p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-of-type {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-item .price {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.process-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

.process-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 650px;
}

.split-left-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--primary-dark);
}

.split-right-image {
    flex: 1;
}

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

.content-box-dark {
    max-width: 600px;
}

.testimonial-label {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

blockquote {
    margin-bottom: 2.5rem;
}

blockquote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-style: italic;
}

blockquote cite {
    color: var(--primary-light);
    font-style: normal;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-box {
    flex: 1;
    min-width: 280px;
}

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

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

/* Gallery Split */
.gallery-split {
    display: flex;
    height: 500px;
}

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* CTA Section Split */
.cta-section-split {
    display: flex;
    min-height: 700px;
}

.cta-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.cta-content {
    max-width: 550px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-benefits li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-gray);
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--bg-white);
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

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

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

.form-checkbox {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

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

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

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-col p {
    color: #B0B0B0;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #B0B0B0;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    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;
    color: #E0E0E0;
}

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

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

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

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

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

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

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 400px;
    background: var(--bg-light);
}

.hero-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.hero-text-left h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-left p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-block-split {
    display: flex;
    min-height: 600px;
}

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

.service-info {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

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

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

.service-number {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-info > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-gray);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Pricing Info Section */
.pricing-info-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.pricing-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-factors {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.factor-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.pricing-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-top: 2rem;
}

/* About Page */
.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
}

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

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

.story-left {
    flex: 1;
}

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

.story-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-white);
}

.story-content {
    max-width: 600px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-detailed {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-detailed h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1;
    min-width: 270px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

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

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

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.process-philosophy-split {
    display: flex;
    min-height: 600px;
}

.philosophy-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.philosophy-text {
    max-width: 600px;
}

.label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.philosophy-image {
    flex: 1;
}

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

.clients-testimonials {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.clients-testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 270px;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

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

.testimonial-card cite {
    color: var(--text-gray);
    font-style: normal;
    font-size: 0.95rem;
}

.numbers-section {
    padding: 6rem 2rem;
    background: var(--primary-dark);
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.number-item p {
    color: var(--bg-white);
    font-size: 1.1rem;
}

.cta-simple {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.cta-simple-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-simple-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-simple-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-main-split {
    display: flex;
    min-height: 650px;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-white);
}

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

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.contact-steps {
    padding-left: 1.5rem;
}

.contact-steps li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    color: var(--text-dark);
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.steps-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thanks-contact {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

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

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

.legal-section strong {
    color: var(--text-dark);
}

.rights-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.rights-block h3 {
    margin-top: 0;
}

.legal-contact,
.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cookie-preference-controls {
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .services-preview-split,
    .testimonial-split,
    .cta-section-split,
    .service-block-split,
    .about-hero-split,
    .story-section-split,
    .process-philosophy-split,
    .contact-main-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }

    .gallery-split {
        flex-wrap: wrap;
        height: auto;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        gap: 1rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    .content-box h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .process-grid {
        flex-direction: column;
    }

    .values-container,
    .values-grid-split,
    .testimonials-grid,
    .numbers-container,
    .pricing-factors,
    .faq-grid {
        flex-direction: column;
    }

    .split-right,
    .cta-left,
    .cta-right,
    .service-info,
    .contact-info-side {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

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

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

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

    .gallery-image {
        min-height: 250px;
    }
}