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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a4f;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.nav-right a:hover {
    color: #2c7a4f;
}

.nav-cta {
    background-color: #2c7a4f;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: #236540;
    color: #ffffff !important;
}

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

.hero-content {
    flex: 1;
    padding: 3rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #2c7a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #236540;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 79, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c7a4f;
    padding: 1rem 2.5rem;
    border: 2px solid #2c7a4f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-secondary:hover {
    background-color: #2c7a4f;
    color: #ffffff;
}

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

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

.trust-badges {
    display: flex;
    gap: 3rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a4f;
}

.badge-label {
    font-size: 0.9rem;
    color: #666;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.intro-visual {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    padding: 3rem 5%;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.link-arrow {
    color: #2c7a4f;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a4f;
}

.price-unit {
    font-size: 0.95rem;
    color: #888;
}

.btn-service {
    background-color: #2c7a4f;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

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

/* Why Us Split */
.why-us-split {
    display: flex;
    padding: 5rem 0;
}

.why-content {
    flex: 1;
    padding: 3rem 5%;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
}

.reason-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reason-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.reason-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.why-visual {
    flex: 1;
}

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

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-split {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    padding: 5rem 5%;
}

.booking-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-point {
    font-size: 1.05rem;
    color: #2c7a4f;
    font-weight: 500;
}

.booking-form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.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: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a4f;
}

.btn-submit {
    background-color: #2c7a4f;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

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

/* Footer Split */
.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: #2c7a4f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #2c7a4f;
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background-color: #2c7a4f;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: 2px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 3rem 5%;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

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

/* Story Split */
.story-split {
    display: flex;
    padding: 5rem 0;
}

.story-visual {
    flex: 1;
}

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

.story-content {
    flex: 1;
    padding: 3rem 5%;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Split */
.values-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

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

.values-content {
    flex: 1;
    padding: 3rem 5%;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.values-visual {
    flex: 1;
}

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

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-split-grid {
    display: flex;
    gap: 2.5rem;
}

.team-card {
    flex: 1;
}

.team-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    color: #2c7a4f;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-info p {
    color: #666;
    line-height: 1.6;
}

/* Approach Split */
.approach-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.approach-content {
    flex: 1;
    padding: 3rem 5%;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a4f;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.approach-visual {
    flex: 1;
}

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

/* CTA Section Centered */
.cta-section-centered {
    text-align: center;
    padding: 5rem 5%;
    background-color: #2c7a4f;
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    background-color: #ffffff;
    color: #2c7a4f;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

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

/* Services Detail Section */
.services-detail-section {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    padding: 4rem 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 5%;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-features ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-detail-visual {
    flex: 1;
}

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

.pricing-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c7a4f;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a4f;
}

.price-period {
    font-size: 1rem;
    color: #888;
}

.price-variants {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-option {
    font-size: 0.95rem;
    color: #666;
}

.btn-service-book {
    background-color: #2c7a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-service-book:hover {
    background-color: #236540;
}

/* Pricing Info Section */
.pricing-info-section {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

.pricing-info-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-block ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.info-block li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 3rem 0;
}

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

.contact-details {
    flex: 1;
    padding: 2rem 5%;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.contact-text a {
    color: #2c7a4f;
}

.contact-note {
    font-size: 0.95rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
}

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

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

.map-overlay p {
    font-size: 1.05rem;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.faq-column {
    flex: 1;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Thanks Section */
.thanks-section {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 3rem 5%;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #2c7a4f;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #555;
}

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

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    background-color: #2c7a4f;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.thanks-visual {
    flex: 1;
}

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

/* Legal Page */
.legal-page {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-section a {
    color: #2c7a4f;
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-table td {
    color: #555;
}

.legal-date {
    font-size: 0.95rem;
    color: #888;
    margin-top: 3rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .why-us-split,
    .booking-split,
    .service-card-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .testimonials-split,
    .team-split-grid,
    .info-split,
    .faq-split {
        flex-direction: column;
    }

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

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

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

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

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

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

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

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

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