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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff8552;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: #fff3cd;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--light-bg);
}

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

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

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
}

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

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

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

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

.split-image {
    flex: 1;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

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

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

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

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

.insight-section {
    background-color: var(--white);
}

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

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

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

.testimonial-main {
    flex: 1.5;
    min-width: 300px;
    background-color: var(--white);
    padding: 3rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial-secondary {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

blockquote p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.how-it-works {
    background-color: var(--white);
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.services-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 24px rgba(0, 0, 0, 0.12);
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

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

.service-card > p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0 1.5rem 1rem;
}

.features-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

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

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

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

.booking-split {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

.benefit-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.booking-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

.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: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
}

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

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

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

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

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

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

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px 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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.7rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
}

.btn-cookie:hover {
    background-color: #e66f44;
}

.btn-cookie-secondary {
    padding: 0.7rem 2rem;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 6px;
    font-weight: 600;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.services-intro-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

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

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

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

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.popular-badge-inline {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-detail-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.terms-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.term-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

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

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

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

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

.detail-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-emergency {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

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

.delivery-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.delivery-zone {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.delivery-zone ul {
    list-style: none;
    margin-top: 1rem;
}

.delivery-zone ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.delivery-zone ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

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

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

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

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

.approach-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

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

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

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

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

.standards-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.standard-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

.destination-list {
    list-style: none;
    margin-top: 1rem;
}

.destination-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.destination-list li::before {
    content: "⛰";
    position: absolute;
    left: 0;
}

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

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

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

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

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

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

.thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    color: var(--white);
}

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

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

.thanks-details {
    text-align: left;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-info-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 2rem;
}

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

.thanks-info-box p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
}

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

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

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

.support-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

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

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

.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.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;
    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: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text,
    .hero-image {
        flex: none;
    }

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

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

    .service-detail-image {
        min-width: auto;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .booking-split {
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
    }
}