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

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --border-color: #e0e0e0;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 4px 16px 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-dark);
    background-color: var(--bg-white);
}

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

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* 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: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-text {
    background: none;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--text-dark);
}

/* Links */
.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 0.75rem;
}

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

section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

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

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Story Section */
.story {
    background-color: var(--bg-light);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

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

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-medium);
}

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

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

.stat-item {
    text-align: center;
}

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

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

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-medium);
}

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

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

.expertise-item h3 {
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-white);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background-color: var(--bg-light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    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 */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 16px 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: 1.5rem;
}

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

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-large);
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.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 {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* About Page Specific */
.about-story {
    background-color: var(--bg-white);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.content-block p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Team */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

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

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-medium);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 2px solid var(--primary-color);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.timeline-content p {
    color: var(--text-medium);
}

/* Philosophy Deep */
.philosophy-deep {
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-block {
    margin-bottom: 3rem;
}

.philosophy-block:last-child {
    margin-bottom: 0;
}

.philosophy-block h3 {
    margin-bottom: 1rem;
}

.philosophy-block p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.service-item-detailed {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-header h2 {
    text-align: left;
    margin-bottom: 0;
}

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

.service-body p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

.benefit-block h3 {
    margin-bottom: 1rem;
}

.benefit-block p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Process Detail */
.process-steps-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.process-step-detail h3 {
    margin-bottom: 1rem;
}

.process-step-detail p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

.contact-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-card h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.directions h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

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

.directions p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

.contact-benefit p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Visit Preparation */
.preparation-content {
    max-width: 900px;
    margin: 0 auto;
}

.preparation-block {
    margin-bottom: 3rem;
}

.preparation-block:last-child {
    margin-bottom: 0;
}

.preparation-block h3 {
    margin-bottom: 1rem;
}

.preparation-block p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.preparation-block ul {
    margin-left: 1.5rem;
    color: var(--text-medium);
}

.preparation-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Company Info */
.company-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.company-details p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.company-details p:last-child {
    margin-bottom: 0;
}

/* Thank You Page */
.thank-you-hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

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

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.step-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 1rem;
}

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

.step-card p {
    color: var(--text-medium);
}

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

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

.meanwhile-item h3 {
    margin-bottom: 1rem;
}

.meanwhile-item p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

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

.legal-text h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.legal-text h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

.legal-text a:hover {
    text-decoration: underline;
}

.cookie-preferences-link {
    margin-top: 3rem;
    text-align: center;
}

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 2rem;
    }

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

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
    }

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

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

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

    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

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

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

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

    .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-content p {
        flex: 1;
    }

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

    .cookie-modal-buttons {
        flex-direction: row;
    }

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

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

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

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

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

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

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

    .contact-card {
        flex: 1;
    }

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

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

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

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

    .step-card {
        flex: 1;
    }

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

    .meanwhile-item {
        flex: 1;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}