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

:root {
    --primary-color: #d4520e;
    --secondary-color: #8b3a0e;
    --accent-color: #f4a261;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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(--background-white);
}

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

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

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

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
}

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

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

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.hero-content {
    text-align: center;
}

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

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

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-visual {
    margin-top: 2rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--background-white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.philosophy-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

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

.story-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

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

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

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

.service-price {
    display: block;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Expertise Section */
.expertise-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

/* Insights Section */
.insights {
    background-color: var(--background-light);
}

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

.insight-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    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);
}

/* CTA Sections */
.cta-final,
.cta-about,
.cta-services,
.cta-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.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);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

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

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

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

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

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

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

/* Services Page */
.services-main {
    padding: 3rem 0;
}

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

.service-detailed {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.service-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-description {
    margin-bottom: 2rem;
}

.service-offerings h3 {
    margin-bottom: 1.5rem;
}

.offerings-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offering-item {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.offering-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.offering-item .price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-includes {
    margin-top: 2rem;
}

.service-includes ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.service-includes ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

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

.benefit-item {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

.process-step-simple {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.contact-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

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

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

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-stat {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.contact-stat strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

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

.direction-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

.direction-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* Additional Info */
.additional-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thank-you-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1rem;
    text-align: left;
}

.next-step .step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.thank-you-additional {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.legal-section table tr {
    border-bottom: 1px solid var(--border-color);
}

.legal-section table td {
    padding: 0.75rem;
}

.legal-section table td:first-child {
    font-weight: 600;
    width: 35%;
}

.cookie-table {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.cookie-table h3 {
    margin-bottom: 1rem;
}

/* About Page Specific */
.about-intro {
    padding: 3rem 0;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image img {
    border-radius: 8px;
}

.mission {
    background-color: var(--background-light);
}

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

.mission-statement {
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

.mission-point img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

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

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

.team {
    background-color: var(--background-light);
}

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

.team-expertise {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

.expertise-list {
    list-style: disc;
    margin-left: 1.5rem;
}

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

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

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

.timeline-item:last-child {
    border-bottom: none;
}

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

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

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

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-feature {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.approach-feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.trust-indicators {
    background-color: var(--background-light);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.philosophy-deep {
    background-color: var(--background-light);
}

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

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

    h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 0;
    }

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

    .hero {
        padding: 4rem 0;
    }

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

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

    .story-layout {
        flex-direction: row;
    }

    .story-text {
        flex: 1;
    }

    .story-values {
        flex: 0 0 300px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-section {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

    .offering-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

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

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

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

    .contact-details {
        flex: 1;
    }

    .contact-about {
        flex: 1;
    }

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

    .contact-stat {
        flex: 0 0 calc(50% - 0.5rem);
    }

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

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

    .additional-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .mission-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mission-point {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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

    .value-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .trust-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

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

    h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .philosophy-item {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .service-card {
        flex: 0 0 calc(25% - 1.125rem);
    }

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

    .process-step {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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

    .insight-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .offering-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

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

    .process-step-simple {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .contact-stat {
        flex: 0 0 calc(33.333% - 0.67rem);
    }

    .direction-item {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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

    .value-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .trust-item {
        flex: 0 0 calc(25% - 1.125rem);
    }
}