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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f8f8;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.ad-disclosure {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background-color: #d4b36a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,169,97,0.3);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-white);
}

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

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

.services-highlight {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    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.15rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.service-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.btn-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #34495e;
}

.philosophy-split {
    display: flex;
    align-items: stretch;
}

.philosophy-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.philosophy-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.visual-block {
    width: 100%;
    height: 100%;
}

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
    transition: opacity 0.3s ease;
}

.link-inline:hover {
    opacity: 0.8;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 5rem 4rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-visual p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.form-container {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
}

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

.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 textarea {
    width: 100%;
    padding: 0.9rem;
    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 textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: var(--text-light);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #d4b36a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,169,97,0.3);
}

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

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

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

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

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.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: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-accept:hover {
    background-color: #d4b36a;
}

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

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

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

.hero-content-left {
    flex: 1;
    padding: 4rem;
    background-color: var(--background-light);
}

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

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

.hero-content-right {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

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

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

.values-split {
    display: flex;
    align-items: stretch;
}

.values-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.values-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-light);
}

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

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

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

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

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

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

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.commitment-split {
    display: flex;
    align-items: stretch;
}

.commitment-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-light);
}

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

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

.commitment-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.page-header {
    padding: 4rem 2rem;
    background-color: var(--background-light);
    text-align: center;
}

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

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    background-color: var(--background-white);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
}

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

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

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

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.cta-section-centered {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

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

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

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

.btn-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #d4b36a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}

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

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

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

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--background-white);
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: var(--background-light);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: #ffffff;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d4b36a;
}

.location-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

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

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

.direction-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.direction-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

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

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

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

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

.booking-summary {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-color);
}

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

.booking-summary p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

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

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

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

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

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

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

.thanks-info {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

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

.thanks-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-contact {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.legal-contact h3 {
    margin-top: 0;
}

.cookie-table {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.cookie-table h4 {
    margin-top: 0;
}

.cookie-table ul {
    list-style: none;
    margin: 1rem 0;
}

.cookie-table ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .philosophy-split,
    .form-section-split,
    .page-hero-split,
    .values-split,
    .commitment-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .philosophy-text,
    .form-visual,
    .form-container,
    .hero-content-left,
    .values-content,
    .commitment-text,
    .service-detail-content,
    .contact-info,
    .contact-visual {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-image,
    .hero-content-right,
    .values-image,
    .commitment-image,
    .service-detail-image {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .section-header-center h2,
    .container-centered h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial,
    .team-member {
        flex: 1 1 100%;
        min-width: auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}