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

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: #2c3e50;
    background-color: #ffffff;
}

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: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8b9a8f;
}

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

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e6e0 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
}

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

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
    border-color: #2c3e50;
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.section-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

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

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

.philosophy-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.icon {
    width: 100%;
    height: 100%;
    color: #8b9a8f;
}

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

.philosophy-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Featured Collection */
.featured-collection {
    background-color: #ffffff;
}

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

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

.featured-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.featured-text .btn {
    margin-top: 1rem;
}

.featured-visual {
    width: 100%;
}

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

/* Statistics */
.stats {
    background-color: #2c3e50;
    color: #ffffff;
}

.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;
    color: #d4c5b0;
}

.stat-label {
    font-size: 1rem;
    color: #e8e6e0;
}

/* Benefits */
.benefits {
    background-color: #f9f9f7;
}

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

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

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

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

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

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

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

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

.testimonial {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
    border-left: 4px solid #d4c5b0;
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
    font-size: 0.9375rem;
}

/* Process */
.process {
    background-color: #f9f9f7;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.value-block {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
}

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

.value-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* FAQ */
.faq {
    background-color: #ffffff;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f7;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #8b9a8f;
    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: #5a6c7d;
    line-height: 1.8;
}

/* Insights */
.insights {
    background-color: #f9f9f7;
}

.insights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.cta-content .btn-primary {
    background-color: #d4c5b0;
    color: #2c3e50;
    border-color: #d4c5b0;
}

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

/* About Page Styles */
.story {
    background-color: #ffffff;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Timeline */
.milestones {
    background-color: #f9f9f7;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

/* Team */
.team {
    background-color: #ffffff;
}

.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

.team-member {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
}

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

.member-role {
    font-size: 0.9375rem;
    color: #8b9a8f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Craftsmanship */
.craftsmanship {
    background-color: #f9f9f7;
}

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

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

.craft-block p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Values Detailed */
.values-detailed {
    background-color: #ffffff;
}

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

.value-detail {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
}

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

.value-detail p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Philosophy Extended */
.philosophy-extended {
    background-color: #f9f9f7;
}

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

.philosophy-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Achievements */
.achievements {
    background-color: #ffffff;
}

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

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

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.achievement-icon svg {
    width: 100%;
    height: 100%;
    color: #8b9a8f;
}

.achievement-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.achievement-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Services Page */
.services-intro {
    background-color: #f9f9f7;
}

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

.intro-content p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.services-list {
    background-color: #ffffff;
}

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

.service-card {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: #8b9a8f;
}

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

.service-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 1rem;
}

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

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

.comparison-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.comparison-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Process Detailed */
.process-detailed {
    background-color: #ffffff;
}

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

.flow-step {
    padding: 2rem;
    background-color: #f9f9f7;
    border-radius: 8px;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #8b9a8f;
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.flow-step p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.step-duration {
    font-size: 0.9375rem;
    color: #8b9a8f;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Contact Page */
.contact-info {
    background-color: #ffffff;
}

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

.contact-details h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-item a {
    color: #8b9a8f;
    text-decoration: underline;
}

.contact-item a:hover {
    color: #2c3e50;
}

.contact-map {
    width: 100%;
    background-color: #f9f9f7;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map svg {
    width: 100%;
    height: auto;
}

/* Visit Info */
.visit-info {
    background-color: #f9f9f7;
}

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

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

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

.visit-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

.visit-card a {
    color: #8b9a8f;
    text-decoration: underline;
}

/* Directions */
.directions {
    background-color: #ffffff;
}

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

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

.direction-block p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Company Info */
.company-info {
    background-color: #f9f9f7;
}

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

.company-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Contact Reasons */
.contact-reasons {
    background-color: #ffffff;
}

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

.reason-item {
    padding: 1.5rem;
    background-color: #f9f9f7;
    border-radius: 8px;
}

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

.reason-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    background-color: #f9f9f7;
    text-align: center;
}

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

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

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

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

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

.thank-you-content p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.next-steps {
    background-color: #ffffff;
}

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

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

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

.step-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Legal Pages */
.legal-content {
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

.legal-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #e8e6e0;
    line-height: 1.6;
}

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

.footer-col ul li a {
    color: #e8e6e0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4c5b0;
}

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

.footer-bottom p {
    color: #e8e6e0;
    font-size: 0.9375rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* 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: 3000;
    padding: 1rem;
}

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

.modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.cookie-option span {
    color: #2c3e50;
}

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

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

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

    .nav-menu li {
        margin: 0 0 0 2rem;
    }

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

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

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

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

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

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

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

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

    .benefits-list {
        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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-details,
    .contact-map {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-actions {
        flex-direction: row;
    }

    .modal-actions {
        flex-direction: row;
        justify-content: flex-end;
    }

    .modal-actions .btn {
        flex: 0 0 auto;
    }
}

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

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

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

    .philosophy-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

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

    .insight-card {
        flex: 1;
    }

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

    .achievement-card {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    section {
        page-break-inside: avoid;
    }
}