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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b5a3c;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8b5a3c;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

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

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

.hero h1 {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6f4730;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.section-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

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

.philosophy-item h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

/* Featured Collection */
.featured-collection {
    padding: 5rem 0;
}

.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.featured-text {
    flex: 1;
    min-width: 300px;
}

.featured-text .label {
    display: inline-block;
    background-color: #8b5a3c;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.featured-text p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.featured-image {
    flex: 1;
    min-width: 300px;
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8dfd6;
    min-width: 80px;
}

.step h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 0.8rem;
}

.step p {
    color: #666;
    line-height: 1.7;
}

/* Statistics */
.stats {
    background-color: #2c1810;
    color: #fff;
    padding: 4rem 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #c9a882;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #e8dfd6;
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #2c1810;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Values */
.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f5f1ed;
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Knowledge Section */
.knowledge {
    background-color: #fafafa;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
}

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

.knowledge-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.knowledge-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.knowledge-item p {
    color: #666;
    line-height: 1.7;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #8b5a3c;
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c1810 0%, #4a2f1f 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e8dfd6;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

/* Timeline */
.evolution {
    background-color: #fafafa;
}

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

.timeline-item {
    padding: 2rem 0;
    border-left: 3px solid #8b5a3c;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 2rem;
    width: 15px;
    height: 15px;
    background-color: #8b5a3c;
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background-color: #8b5a3c;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #f5f1ed;
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.role {
    display: block;
    color: #8b5a3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

/* Approach */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-block h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.approach-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Commitment Grid */
.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

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

.commitment-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #666;
    line-height: 1.7;
}

/* Recognition */
.recognition {
    background-color: #fafafa;
}

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

.recognition-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.recognition-list {
    list-style: disc;
    padding-left: 2rem;
}

.recognition-list li {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Looking Forward */
.looking-forward {
    background-color: #f5f1ed;
}

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

.forward-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.forward-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Page */
.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-top: auto;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

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

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Process Overview */
.process-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #8b5a3c;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-text h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.8rem;
}

.process-text p {
    color: #666;
    line-height: 1.7;
}

/* Customization */
.customization {
    background-color: #fafafa;
}

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

.customization-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.customization-content > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.custom-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.custom-option {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.custom-option h3 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 0.8rem;
}

.custom-option p {
    color: #666;
    line-height: 1.7;
}

.custom-note {
    color: #8b5a3c;
    font-style: italic;
    text-align: center;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

.contact-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-block h3 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #666;
    line-height: 1.7;
}

.contact-block a {
    color: #8b5a3c;
}

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

.contact-about {
    flex: 1;
    min-width: 300px;
}

.contact-about h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.direction-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.company-block {
    flex: 1;
    min-width: 250px;
}

.company-block h3 {
    font-size: 1.1rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.company-block p {
    color: #666;
}

/* Neighborhood */
.neighborhood {
    background-color: #fafafa;
}

.neighborhood p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

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

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

.thank-you-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thank-you-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-intro {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #8b5a3c;
}

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

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    background-color: #f5f1ed;
    color: #2c1810;
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #c9a882;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #e8dfd6;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c9a882;
}

.footer-bottom {
    border-top: 1px solid #4a2f1f;
    padding-top: 1.5rem;
    text-align: center;
    color: #c9a882;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #c9a882;
    text-decoration: underline;
}

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

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

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

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}

.modal-content h2 {
    margin-bottom: 2rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

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

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

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

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

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

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

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

    .hero-text {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

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

    .philosophy-grid,
    .values-content,
    .knowledge-grid,
    .testimonials-grid,
    .team-grid,
    .commitment-grid,
    .benefits-grid,
    .services-grid,
    .directions-grid {
        flex-direction: column;
    }

    .featured-content {
        flex-direction: column;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .stats-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .thank-you-links {
        flex-direction: column;
    }

    .process-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

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

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}