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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #c99563;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f3;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --border-color: #e0d8cf;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-primary:hover {
    background-color: #234a3d;
}

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

.cta-secondary:hover {
    background-color: #705836;
}

.intro-alternate {
    display: flex;
}

.intro-left {
    flex: 1;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    background-color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

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

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

.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(--text-dark);
}

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

.services-grid-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

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

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #234a3d;
}

.philosophy-split {
    display: flex;
}

.philosophy-left {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
}

.philosophy-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.philosophy-right {
    flex: 1;
    overflow: hidden;
}

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.cta-split-final {
    display: flex;
}

.cta-content-left {
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.cta-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.cta-large:hover {
    transform: translateY(-2px);
}

.cta-image-right {
    flex: 1;
    overflow: hidden;
}

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

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-right {
    flex: 1;
    padding: 4rem;
}

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

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

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

.form-group input,
.form-group select,
.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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #234a3d;
}

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

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-column p {
    color: #999;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column ul a {
    color: #999;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    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;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
}

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

.hero-text-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text-left p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

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

.story-split {
    display: flex;
}

.story-left {
    flex: 1;
    overflow: hidden;
}

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

.story-right {
    flex: 1;
    background-color: var(--light-bg);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 3rem 2.5rem;
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.team-split {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
}

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

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.team-members {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.member-row-split {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

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

.member-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

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

.equipment-split {
    display: flex;
}

.equipment-left {
    flex: 1;
    overflow: hidden;
}

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

.equipment-right {
    flex: 1;
    background-color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.equipment-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.equipment-list li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.cta-about {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

.services-detail {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.service-detail-split {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

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

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

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

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

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.service-features {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.practical-info {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.practical-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.info-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.info-block {
    flex: 1;
    background-color: var(--white);
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.info-block ul {
    padding-left: 1.5rem;
}

.info-block ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

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

.contact-content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

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

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.contact-note p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.map-placeholder {
    background-color: var(--light-bg);
    padding: 3rem;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.how-to-reach {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.how-to-reach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.directions-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.direction-card {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.direction-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.faq-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.thanks-main {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-selected {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

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

.btn-primary:hover {
    background-color: #234a3d;
}

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

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

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

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-card {
    flex: 1;
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-page {
    background-color: var(--white);
    padding: 4rem 2rem;
    min-height: 70vh;
}

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

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

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

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

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

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

.legal-container ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

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

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-split,
    .intro-alternate,
    .philosophy-split,
    .cta-split-final,
    .story-split,
    .equipment-split,
    .page-hero-split,
    .service-detail-split,
    .contact-content-split,
    .form-container-split {
        flex-direction: column;
    }

    .service-card,
    .member-row-split {
        flex-direction: column;
    }

    .member-row-split.reverse {
        flex-direction: column;
    }

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

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

    .section-header-center h2,
    .testimonials h2,
    .team-intro h2 {
        font-size: 2.2rem;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .philosophy-left,
    .philosophy-right,
    .cta-content-left,
    .cta-image-right,
    .story-left,
    .story-right,
    .equipment-left,
    .equipment-right,
    .service-detail-left,
    .service-detail-right {
        padding: 3rem 2rem;
    }

    .testimonial-grid,
    .directions-split,
    .info-split,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}
