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

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

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

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

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

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

.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: #6B9BD1;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6B9BD1;
    border-bottom-color: #6B9BD1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B9BD1 0%, #8BB5E3 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.page-hero {
    background-color: #F5F7FA;
    padding: 50px 20px;
    text-align: center;
}

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

.lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #6B9BD1;
    color: #fff;
}

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

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

.btn-secondary:hover {
    background-color: #6B9BD1;
    color: #fff;
}

/* Sections */
section {
    padding: 50px 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

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

/* Values Section */
.values-section {
    background-color: #F5F7FA;
}

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

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

/* About Intro Section */
.about-intro {
    background-color: #fff;
}

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

.about-intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.about-intro-text p {
    margin-bottom: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Featured Collections */
.featured-collections {
    background-color: #F5F7FA;
}

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

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

.collection-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.collection-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Stats Section */
.stats-section {
    background-color: #6B9BD1;
    color: #fff;
    padding: 60px 20px;
}

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

.stat-item {
    padding: 1rem;
}

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

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

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

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

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

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

.process-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

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

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

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

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

.benefit-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

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

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

.benefit-block {
    padding: 1.5rem;
    background-color: #F5F7FA;
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

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

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #6B9BD1;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

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

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

/* Trust Section */
.trust-section {
    background-color: #fff;
}

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

.trust-item {
    padding: 1.5rem;
    border-left: 4px solid #6B9BD1;
    background-color: #F5F7FA;
}

.trust-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6B9BD1 0%, #8BB5E3 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

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

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

/* Content Section */
.content-section {
    background-color: #fff;
}

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

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #333;
    text-align: left;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #333;
}

.content-wrapper p {
    margin-bottom: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper ul li {
    list-style: disc;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

.philosophy-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
    background-color: #fff;
}

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

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

.team-member h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #6B9BD1;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

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

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

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B9BD1;
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

/* Values Detail Section */
.values-detail-section {
    background-color: #fff;
}

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

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

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

.value-detail-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Commitment Section */
.commitment-section {
    background-color: #F5F7FA;
}

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

.commitment-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

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

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

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

.services-list h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    color: #333;
    text-align: left;
}

.services-list h2:first-child {
    margin-top: 0;
}

.collection-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

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

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6B9BD1;
    margin-bottom: 0;
}

.service-benefits {
    background-color: #fff;
}

.comparison-section {
    background-color: #F5F7FA;
}

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

.comparison-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.contact-item a {
    color: #6B9BD1;
    text-decoration: underline;
}

.contact-detail {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.directions-section {
    background-color: #F5F7FA;
}

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

.direction-block h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.direction-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-faq-section {
    background-color: #fff;
}

.company-info-section {
    background-color: #F5F7FA;
}

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

.company-info p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 20px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thank-you-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.next-steps-section {
    background-color: #F5F7FA;
}

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

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

.next-step-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.next-step-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.next-step-card a {
    color: #6B9BD1;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    background-color: #fff;
    padding: 40px 0;
}

.legal-content a {
    color: #6B9BD1;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 50px 20px 20px;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    color: #BDC3C7;
    line-height: 1.6;
}

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

.footer-column a {
    color: #BDC3C7;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: #BDC3C7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

/* 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: 1001;
    padding: 20px;
}

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

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

.cookie-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

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

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

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

.cookie-option span {
    font-weight: 600;
    color: #333;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.8rem;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
    }

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

    .values-grid,
    .collections-grid,
    .testimonials-grid,
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .collection-card,
    .testimonial-card,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
    }

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

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

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

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

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

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

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

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

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

    .contact-block {
        flex: 1;
    }

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

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

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

    .next-step-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

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

@media (min-width: 1024px) {
    .value-card,
    .collection-card,
    .trust-item {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

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

    .direction-block {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}