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

:root {
    --primary-color: #D97642;
    --primary-dark: #B85C2F;
    --secondary-color: #2A4B3C;
    --accent-color: #E8B298;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #707070;
    --bg-light: #F9F7F4;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #5C8C7A;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

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

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: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
}

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

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

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

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

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

.nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease;
}

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

.nav-menu li {
    padding: 0.75rem 2rem;
}

.nav-menu a {
    display: block;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 500;
}

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

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

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

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

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

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

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

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

.lead {
    font-size: 1.2rem;
    color: var(--text-medium);
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

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

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

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

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

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

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

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

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: 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;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.step-arrow {
    display: none;
}

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

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

/* Knowledge/Tips Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.knowledge-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

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

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

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.85;
    line-height: 1.6;
}

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

.footer-col a {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

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

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

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-medium);
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    padding-left: 2rem;
}

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

/* Products/Services Page */
.services-intro {
    padding: 2rem 0;
}

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

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.category-header h2 {
    margin-bottom: 0.75rem;
}

.category-header p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

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

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 2rem;
}

.product-visual img {
    max-height: 200px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.product-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

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

.benefit-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    font-weight: 700;
    background: var(--bg-light);
}

.comparison-cell {
    flex: 1;
    padding: 1.25rem;
    text-align: center;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: rgba(217, 118, 66, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.process-icon {
    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.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

.contact-note {
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

/* About Store */
.about-store {
    background: var(--bg-light);
}

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

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

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

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

.direction-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.direction-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.direction-item p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Visit Tips */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tip-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tip-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 50px;
}

.tip-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.tip-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.info-row {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    flex: 0 0 160px;
    font-weight: 600;
    color: var(--text-dark);
}

.info-value {
    flex: 1;
    color: var(--text-medium);
}

/* Values Grid (About Page) */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

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

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

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

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

/* Approach Grid */
.approach-content .intro-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Trust Grid */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.thank-you-content {
    text-align: center;
}

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

.next-steps {
    margin: 3rem 0;
}

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background: 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;
    margin: 0 auto 1rem;
}

.step-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

.while-waiting {
    padding: 3rem 0;
}

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

.waiting-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.waiting-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

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

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

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

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

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

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

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

    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        box-shadow: none;
    }

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

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

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

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

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

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

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

    .step-arrow {
        display: block;
        font-size: 2rem;
        color: var(--primary-color);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer-col {
        flex: 1;
    }
}

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

    .hero-content {
        display: flex;
        align-items: center;
        gap: 4rem;
        text-align: left;
    }

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

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

    section {
        padding: 5rem 0;
    }

    section h2 {
        font-size: 2.2rem;
    }

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

    .philosophy-item {
        flex: 1;
    }

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

    .service-card {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .knowledge-card {
        flex: 1;
    }

    .product-grid {
        flex-wrap: wrap;
    }

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

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

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

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

    .process-card {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

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

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

    .team-member {
        flex: 1;
    }

    .approach-grid {
        flex-wrap: wrap;
    }

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

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

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

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