/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #2c5f7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d52;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f5f5f5;
    color: #2c5f7f;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

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

.hero-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

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

.btn-primary {
    background-color: #2c5f7f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3d52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #2c5f7f;
    border: 2px solid #2c5f7f;
}

.btn-secondary:hover {
    background-color: #2c5f7f;
    color: #fff;
}

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

section h2 {
    font-size: 1.875rem;
    color: #1a3d52;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro,
.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

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

/* Story Section */
.story-section {
    background-color: #fff;
}

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

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

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

.story-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Collections Highlight */
.collections-highlight {
    background-color: #f8f9fa;
}

.collections-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.collection-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.collection-visual img {
    border-radius: 8px;
}

.collection-info h3 {
    font-size: 1.5rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.collection-info p {
    color: #555;
    margin-bottom: 1rem;
}

.collection-features {
    list-style: none;
    padding: 0;
}

.collection-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.collection-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section,
.benefits-services {
    background-color: #fff;
}

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

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

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c5f7f;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50%;
}

.benefit-content h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #555;
    line-height: 1.6;
}

.benefit-block {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.benefit-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.benefit-block h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.benefit-block p {
    color: #555;
}

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

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

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

.testimonial-stars {
    color: #f5a623;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    color: #2c5f7f;
    font-weight: 600;
}

/* Process Section */
.process-section {
    background-color: #fff;
}

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

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.step-icon img {
    width: 100%;
    height: 100%;
}

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

.process-step p {
    color: #555;
}

/* Stats Section */
.stats-section {
    background-color: #2c5f7f;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2c5f7f;
    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;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}

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

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

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

.knowledge-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.knowledge-card p {
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #2c5f7f;
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Services Pages */
.services-intro {
    background-color: #fff;
    padding: 2rem 0;
}

.intro-text {
    font-size: 1.125rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-catalog {
    background-color: #f8f9fa;
}

.collection-description {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2c5f7f;
    margin-top: auto;
}

/* Comparison Section */
.comparison-section {
    background-color: #fff;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row.header {
    background-color: #2c5f7f;
    color: #fff;
    font-weight: bold;
}

.comparison-cell {
    padding: 1rem;
    flex: 1;
}

.comparison-cell.label {
    font-weight: 600;
    color: #1a3d52;
}

/* Care Tips */
.care-tips {
    background-color: #f8f9fa;
}

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

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

.tip-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.contact-block {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-block h2 {
    font-size: 1.5rem;
    color: #1a3d52;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c5f7f;
    margin-bottom: 1rem;
}

.contact-block p {
    color: #555;
    line-height: 1.6;
}

.about-contact {
    background-color: #f8f9fa;
}

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

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

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

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

.directions {
    background-color: #fff;
}

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

.direction-item h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.direction-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-info {
    background-color: #f8f9fa;
}

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

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

.legal-item h3 {
    font-size: 1.125rem;
    color: #1a3d52;
    margin-bottom: 0.5rem;
}

.legal-item p {
    color: #555;
}

.visit-us {
    background-color: #2c5f7f;
    color: #fff;
    text-align: center;
}

.visit-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.visit-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.visit-address {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

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

.thank-you-content h1 {
    font-size: 2rem;
    color: #1a3d52;
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.25rem;
    color: #2c5f7f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #555;
}

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

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

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

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

.step-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-reminder {
    background-color: #f8f9fa;
}

.contact-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item strong {
    display: block;
    color: #1a3d52;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
}

/* About Page */
.origin-story,
.team-section,
.values-detailed,
.milestones,
.commitments,
.impact {
    background-color: #fff;
}

.origin-story:nth-child(even),
.team-section:nth-child(even),
.values-detailed:nth-child(even),
.milestones:nth-child(even),
.commitments:nth-child(even),
.impact:nth-child(even) {
    background-color: #f8f9fa;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.team-roles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.role-card h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.role-card p {
    color: #555;
    line-height: 1.6;
}

.value-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-visual {
    flex: 1;
}

.value-visual img {
    border-radius: 8px;
}

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 1.5rem;
    color: #1a3d52;
    margin-bottom: 1rem;
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 2rem;
    border-left: 2px solid #2c5f7f;
    padding-left: 2rem;
}

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

.timeline-year {
    position: absolute;
    left: -2.5rem;
    top: 0;
    background-color: #2c5f7f;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.875rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.commitment-item h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin-bottom: 0.75rem;
}

.commitment-item p {
    color: #555;
    line-height: 1.6;
}

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

.impact-stat {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5f7f;
    margin-bottom: 0.75rem;
}

.impact-stat p {
    color: #555;
    line-height: 1.6;
}

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

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.75rem;
    color: #1a3d52;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: #1a3d52;
    margin: 1.5rem 0 0.75rem;
}

.legal-section h4 {
    font-size: 1.125rem;
    color: #2c5f7f;
    margin: 1rem 0 0.5rem;
}

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-section a {
    color: #2c5f7f;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1a3d52;
}

/* Footer */
.footer {
    background-color: #1a3d52;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

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

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

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

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d52;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    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;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1a3d52;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

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

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

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
        border-radius: 4px;
    }

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

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .collection-feature {
        flex-direction: row;
        align-items: center;
    }

    .collection-feature.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

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

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

    .knowledge-card {
        flex: 1;
    }

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

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

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

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

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

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

    .contact-block {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

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

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

    .step-card {
        flex: 1;
    }

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

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

    .value-detail {
        flex-direction: row;
        align-items: center;
    }

    .value-detail.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

    .footer-column {
        flex: 1;
    }

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

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

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

    section h2 {
        font-size: 2.25rem;
    }

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

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

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

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

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

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

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

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