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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a581;
    --accent-color: #8b7355;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

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

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

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8dfd5 100%);
    padding: 4rem 0;
    text-align: center;
}

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

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

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

section h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

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

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

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
}

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

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

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

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

.decorative-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 8px;
}

/* Collection Cards */
.collection-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.collection-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-visual {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8dfd5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual img {
    max-width: 60%;
    max-height: 60%;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow:hover {
    color: var(--accent-color);
}

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

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

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

.benefit-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.benefit-block h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--secondary-color);
}

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

.testimonial footer {
    text-align: right;
}

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

/* Statistics */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    opacity: 0.9;
}

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

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

.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.value-item h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.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.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

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

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

.cta .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.7;
}

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

.footer-column a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

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

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

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

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

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

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

.cookie-option strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

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

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

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

.intro-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-item {
    margin-bottom: 4rem;
}

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

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

.service-description {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-products {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.product-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.price {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.guide-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.guide-step:last-child {
    border-bottom: none;
}

.guide-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-step p {
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.contact-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.contact-block h2 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

.visit-highlight {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

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

.visit-highlight p {
    margin-bottom: 0;
}

.visit-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.visit-benefits li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.visit-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

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

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

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

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

.reason-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    color: var(--bg-white);
    padding: 4rem 0;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.thank-you-hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thank-you-hero .lead {
    font-size: 1.125rem;
    opacity: 0.95;
}

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

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

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

.suggestion-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.suggestion-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.reassurance-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.reassurance-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Page */
.content-block {
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

.role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.large-text {
    font-size: 1.375rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.principle-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.principle-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.craft-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

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

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

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

.timeline-year {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

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

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

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

.commitment-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.legal-text h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    text-align: left;
}

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

.legal-text h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-text h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem;
}

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

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

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

.legal-text a:hover {
    color: var(--accent-color);
}

.legal-text strong {
    color: var(--primary-color);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .menu-toggle {
        display: none;
    }

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

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

    section h2 {
        font-size: 2.25rem;
    }

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

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

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

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

    .stat-item {
        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-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

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

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

    .service-products {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

    .visit-content {
        flex-direction: row;
        gap: 3rem;
    }

    .visit-text {
        flex: 1.5;
    }

    .visit-benefits {
        flex: 1;
    }

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

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

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

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

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

    .step-card {
        flex: 1;
    }

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

    .suggestion-card {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer-column {
        flex: 1 1 calc(25% - 1rem);
    }

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

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

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

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

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .benefits-layout {
        flex-direction: row;
    }

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

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

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

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

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

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

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

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