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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c89968;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

ul {
    list-style: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

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

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-visual {
    flex: 1;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-large:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

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

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

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

.split-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.split-visual {
    position: relative;
    overflow: hidden;
}

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

.promise-section {
    background: white;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.highlight-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

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

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

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

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

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

.process-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

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

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

.services-preview {
    background: white;
}

.pricing-section {
    padding: 6rem 2rem;
    background: white;
}

.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.price-card.featured {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.price-card.featured h3,
.price-card.featured p {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.price-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.price-card.featured .price {
    color: var(--secondary-color);
}

.btn-card {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.testimonials-section {
    background: var(--bg-light);
}

.testimonial-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

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

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

.value-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

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

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

.cta-visual-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
                url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=1600&h=800&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    width: 100%;
}

.cta-content-center {
    text-align: center;
    padding: 3rem 2rem;
    color: white;
}

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

.cta-content-center p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info {
    flex: 1;
}

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

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

.form-benefits {
    margin-top: 2rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.form-wrapper {
    flex: 1;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
}

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

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

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

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

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

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

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

.page-hero {
    margin-top: 70px;
    padding: 6rem 2rem 4rem;
    background: var(--bg-light);
}

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

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-intro {
    background: white;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: white;
}

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

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

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

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

.experience-section {
    background: var(--bg-light);
}

.experience-list {
    margin-top: 2rem;
}

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

.experience-item:last-child {
    border-bottom: none;
}

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

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

.values-section {
    padding: 6rem 2rem;
    background: white;
}

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

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

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-block {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
}

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

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

.mission-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section-alt {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-detail {
    margin-top: 70px;
}

.service-block {
    background: white;
    margin-bottom: 0;
}

.service-block.alternate {
    background: var(--bg-light);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

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

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

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

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

.comparison-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

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

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

.package-section {
    padding: 6rem 2rem;
    background: white;
}

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

.package-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.package-card {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    padding: 3rem 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    text-align: center;
}

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

.package-services {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-original {
    text-decoration: line-through;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.package-save {
    color: green;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

.cta-final .cta-content-center {
    color: white;
}

.cta-final h2 {
    color: white;
}

.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

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

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

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

.contact-item:last-child {
    border-bottom: none;
}

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

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

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

.note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-response {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-visual {
    flex: 1;
}

.visual-caption {
    padding: 1rem;
    background: var(--bg-light);
    margin-top: 1rem;
}

.visual-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.visit-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.visit-step {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

.location-map {
    padding: 6rem 2rem;
    background: white;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: 2rem;
    color: white;
    text-align: center;
}

.map-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
}

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

.cta-contact {
    padding: 5rem 2rem;
    background: white;
}

.thanks-hero {
    margin-top: 70px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 4rem 2rem;
}

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

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

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

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

.selected-service {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.next-steps {
    padding: 6rem 2rem;
    background: white;
}

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

.steps-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

.waiting-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.waiting-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.waiting-suggestion {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

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

.waiting-suggestion p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-urgency {
    padding: 4rem 2rem;
    background: white;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.urgency-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.email-link {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-testimonial {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.author {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: white;
}

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

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

.last-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

.legal-section h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

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

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

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

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

.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);
    font-weight: 700;
    color: var(--primary-color);
}

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

.legal-back {
    margin-top: 4rem;
    text-align: center;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content,
    .hero-visual {
        flex: none;
    }

    .hero-visual {
        min-height: 400px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .form-container-split,
    .contact-container {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .section-header-center h2,
    .split-content h2 {
        font-size: 2.2rem;
    }

    .process-grid,
    .pricing-grid,
    .value-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }

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

    .split-content {
        padding: 3rem 1.5rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .process-section,
    .pricing-section,
    .value-section {
        padding: 4rem 1rem;
    }
}
