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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c49b63;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    max-height: 400px;
}

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f8f5f0;
    color: #c49b63;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8d5b7 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #c49b63;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b38952;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 155, 99, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c49b63;
    border: 2px solid #c49b63;
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy {
    background-color: #f8f5f0;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-icon {
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.8;
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-visual svg {
    max-width: 100%;
    height: auto;
}

/* Services Preview */
.services-preview {
    background-color: #f8f5f0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #c49b63;
}

.cta-center {
    text-align: center;
}

/* Benefits */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #f8f5f0;
    border-radius: 8px;
    border-left: 4px solid #c49b63;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background-color: #f8f5f0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.testimonial-author {
    font-weight: 600;
    color: #c49b63;
    text-align: right;
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f5f0;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c49b63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.step p {
    color: #666;
    line-height: 1.8;
}

/* Stats */
.stats {
    background-color: #c49b63;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: #f8f5f0;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e8d5b7;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #c49b63;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    color: #666;
    line-height: 1.8;
}

/* CTA Sections */
.cta-final,
.cta-visit,
.cta-booking,
.cta-contact {
    background: linear-gradient(135deg, #c49b63 0%, #b38952 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.cta-content .btn-primary {
    background-color: #fff;
    color: #c49b63;
}

.cta-content .btn-primary:hover {
    background-color: #f8f5f0;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #c49b63;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c49b63;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: normal;
}

.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8d5b7 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Values */
.values {
    background-color: #f8f5f0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Team */
.team-description {
    max-width: 900px;
    margin: 2rem auto 0;
}

.team-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Approach */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    padding: 2rem;
    background-color: #f8f5f0;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.approach-item p:last-child {
    margin-bottom: 0;
}

/* Milestones / Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #f8f5f0;
    border-radius: 8px;
    border-left: 4px solid #c49b63;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c49b63;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

/* Commitment */
.commitment {
    background-color: #f8f5f0;
}

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

.commitment-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Catalog */
.services-intro {
    background-color: #f8f5f0;
    padding: 2rem 0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    line-height: 1.8;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #c49b63;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    padding: 1.5rem;
    background-color: #f8f5f0;
    border-radius: 8px;
    border-left: 4px solid #c49b63;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c49b63;
    white-space: nowrap;
}

.service-item p {
    color: #666;
    line-height: 1.8;
}

/* Service Benefits */
.service-benefits {
    background-color: #f8f5f0;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-box h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: #666;
    line-height: 1.8;
}

/* Service Process */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f5f0;
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #c49b63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #666;
    line-height: 1.8;
}

/* Service Comparison */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-card {
    background-color: #f8f5f0;
    padding: 2rem;
    border-radius: 8px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    margin-bottom: 1.5rem;
}

.comparison-list li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.comparison-advice {
    padding: 1rem;
    background-color: #fff;
    border-radius: 5px;
    border-left: 3px solid #c49b63;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #f8f5f0;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
}

.contact-card a {
    color: #c49b63;
    text-decoration: underline;
}

.contact-card a:hover {
    color: #b38952;
}

/* Location */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    color: #666;
    line-height: 1.8;
}

.location-visual {
    display: flex;
    justify-content: center;
}

/* Booking Info */
.booking-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: #f8f5f0;
    padding: 2rem;
    border-radius: 8px;
}

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

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: #666;
}

.info-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Company Info */
.company-details {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f5f0;
    padding: 2rem;
    border-radius: 8px;
}

.company-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #c49b63;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text em {
    color: #999;
    font-size: 0.9375rem;
}

.legal-text a {
    color: #c49b63;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #b38952;
}

.legal-text strong {
    color: #333;
    font-weight: 600;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #f8f5f0;
}

.cookie-table thead {
    background-color: #c49b63;
    color: #fff;
}

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

.cookie-table th {
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

/* Stats List */
.stats-list {
    list-style: none !important;
    margin: 0 !important;
}

.stats-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.stats-list li:last-child {
    border-bottom: none;
}

/* Highlight Box */
.highlight-box {
    background-color: #f8f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #c49b63;
}

.highlight-box h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Content Layout */
.content-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-main h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-main p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        max-height: none;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .location-content {
        flex-direction: row;
    }

    .location-text {
        flex: 1;
    }

    .location-visual {
        flex: 1;
    }

    .booking-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .comparison-grid {
        flex-direction: row;
    }

    .comparison-card {
        flex: 1;
    }

    .content-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .content-main {
        flex: 2;
    }

    .content-sidebar {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .philosophy-grid {
        flex-wrap: nowrap;
    }

    .philosophy-item {
        flex: 1;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .benefits-layout {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .step {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .approach-content {
        flex-wrap: nowrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-box {
        flex: 1;
    }

    .process-flow {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }
}
