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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f7f5;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
    --accent-color: #c19a6b;
    --success-color: #7ab55c;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo:hover {
    color: var(--secondary-color);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

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

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

/* Philosophy Section */
.philosophy {
    background: var(--bg-white);
}

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

/* Services */
.services-highlight {
    background: var(--bg-light);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
}

.link-arrow::after {
    content: ' →';
}

/* Benefits */
.benefits {
    background: var(--bg-white);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.benefits-list li {
    padding-left: 0;
}

.benefits-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
}

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

.benefits-visual img {
    max-width: 400px;
}

/* Process */
.process {
    background: var(--bg-light);
    text-align: center;
}

.process h2 {
    margin-bottom: 0.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Statistics */
.stats {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.stat-item {
    flex: 1 1 100%;
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

/* Values */
.values {
    background: var(--bg-light);
}

.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

/* Story, Mission */
.story,
.mission {
    background: var(--bg-white);
}

.story-content,
.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-content h2,
.mission-text h2 {
    margin-bottom: 1.5rem;
}

.story-content p,
.mission-text p {
    line-height: 1.8;
    color: var(--text-light);
}

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

.mission-visual img {
    max-width: 400px;
}

/* Team */
.team {
    background: var(--bg-light);
    text-align: center;
}

.team h2 {
    margin-bottom: 0.5rem;
}

.team-intro {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

.team-intro p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Approach */
.approach {
    background: var(--bg-white);
}

.approach h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.approach-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.approach-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 700;
}

.approach-text h3 {
    margin-bottom: 0.625rem;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Achievements */
.achievements {
    background: var(--bg-light);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.achievements-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.achievement-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.achievement-text h3 {
    margin-bottom: 0.5rem;
}

.achievement-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Commitment */
.commitment {
    background: var(--bg-white);
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
}

.commitment-box h2 {
    margin-bottom: 1.5rem;
}

.commitment-box p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Page */
.services-intro {
    background: var(--bg-white);
}

.services-list {
    background: var(--bg-light);
    padding: 4rem 0;
}

.services-list h2 {
    margin-bottom: 2rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-info h3 {
    margin-bottom: 0.625rem;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

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

/* Service Benefits */
.service-benefits {
    background: var(--bg-white);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.benefit-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-box img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

/* Process Flow */
.service-process {
    background: var(--bg-light);
}

.service-process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

.process-icon img {
    width: 100%;
    height: 100%;
}

.process-arrow {
    display: none;
}

/* Contact */
.contact-intro {
    background: var(--bg-white);
}

.contact-info {
    background: var(--bg-light);
}

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

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Location */
.about-location {
    background: var(--bg-white);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.location-text h2 {
    margin-bottom: 1.5rem;
}

.location-text p {
    line-height: 1.8;
    color: var(--text-light);
}

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

.location-visual img {
    max-width: 400px;
}

/* Directions */
.directions {
    background: var(--bg-light);
}

.directions h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.direction-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.direction-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

/* Booking Info */
.booking-info {
    background: var(--bg-white);
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-box h2 {
    margin-bottom: 1.5rem;
}

.info-box p {
    line-height: 1.8;
    color: var(--text-light);
}

.booking-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.booking-list li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Visit Us */
.visit-us {
    background: var(--bg-light);
}

.visit-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.visit-box h2 {
    margin-bottom: 1.5rem;
}

.visit-box p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Thank You */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.thank-you-content h1 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Legal Content */
.legal-content {
    background: var(--bg-white);
    padding: 3rem 0;
}

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

.legal-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
}

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

.legal-text li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-text p {
    line-height: 1.8;
    color: var(--text-light);
}

.legal-text strong {
    color: var(--text-color);
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
}

.cookie-table td {
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.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-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    padding: 1rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 0.25rem;
    }

    .nav-menu li a {
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: 6rem 0;
    }

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

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

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

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

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

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

    .benefits-text,
    .benefits-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

    .story-content,
    .mission-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .mission-text,
    .mission-visual {
        flex: 1;
    }

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

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

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

    .process-flow {
        flex-direction: row;
        align-items: center;
    }

    .process-card {
        flex: 1;
    }

    .process-arrow {
        display: block;
        font-size: 2rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }

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

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

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

    .location-text,
    .location-visual {
        flex: 1;
    }

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

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

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

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

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 3rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .philosophy-item {
        flex: 1;
    }

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

    .service-card {
        flex: 1;
    }

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

    .process-step {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .value-card {
        flex: 1;
    }

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

    .benefit-box {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-card {
        flex: 1;
    }
}