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

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

html {
    scroll-behavior: smooth;
}

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;
    background: var(--bg-white);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0;
}

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

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

.hero-split {
    padding: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 85vh;
}

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

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

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

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

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

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

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

.intro-split {
    padding: 0;
    margin: 5rem 0;
}

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

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

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

.split-text {
    flex: 1;
    padding: 5rem 4rem;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

.cta-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: var(--accent-color);
}

.philosophy-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    margin: 5rem 0;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.philosophy-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
}

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

.philosophy-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-preview {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.service-info {
    padding: 2rem;
}

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

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

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

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

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

.testimonial-split {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0;
    margin: 5rem 0;
}

.testimonial-content {
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-content .quote-mark {
    font-size: 5rem;
    line-height: 0.8;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.process-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-steps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.4;
}

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

.process-step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cta-split {
    padding: 0;
    margin: 5rem 0;
}

.cta-visual {
    position: relative;
}

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

.cta-text-content p {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

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

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px 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 textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

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

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

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

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

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

.cookie-banner.active {
    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;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

.page-hero {
    padding: 5rem 0;
    background: var(--bg-light);
}

.hero-split-page {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.page-hero-text {
    flex: 1;
}

.page-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

.page-hero-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.story-split {
    padding: 5rem 0;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

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

.value-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.team-split {
    padding: 5rem 0;
}

.philosophy-deep {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6rem 2rem;
}

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

.philosophy-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.approach-split {
    padding: 5rem 0;
}

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

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

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

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.commitment-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

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

.commitment-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cta-simple {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-simple-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-simple-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
}

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

.service-price-badge {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.service-timeline {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

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

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-main {
    padding: 5rem 0;
}

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

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

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p,
.contact-detail a {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.contact-note p {
    margin: 0;
    font-size: 1rem;
}

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

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

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

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

.approach-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.approach-step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

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

.faq-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.alternate-contact {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem;
    text-align: center;
}

.alternate-content {
    max-width: 800px;
    margin: 0 auto;
}

.alternate-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.alternate-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.thanks-hero {
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.thanks-next {
    margin-bottom: 4rem;
}

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

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

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

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

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

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.legal-page {
    padding: 5rem 2rem;
}

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

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

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding: 4rem 2rem;
    }

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

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

    .split-visual img {
        min-height: 350px;
    }

    .split-text {
        padding: 3rem 2rem;
    }

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

    .service-detail-content {
        padding: 3rem 2rem;
    }

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

    .contact-info {
        padding: 3rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .philosophy-grid,
    .process-steps,
    .values-grid,
    .commitment-grid,
    .approach-steps,
    .faq-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cta-buttons,
    .thanks-links {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a,
    .thanks-links a {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

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

    .split-text h2,
    .page-hero-text h1 {
        font-size: 2rem;
    }

    .philosophy-header h2,
    .services-intro h2,
    .process-container h2,
    .values-container h2,
    .commitment-container h2,
    .approach-content h2,
    .faq-container h2 {
        font-size: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .modal-content {
        padding: 2rem;
    }

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