/* 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 {
    color: #8b4f8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6a3a6c;
}

ul {
    list-style: 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 #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b4f8d;
}

.nav-logo:hover {
    color: #6a3a6c;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    padding: 1rem 20px;
    color: #333;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #f8f4f8;
    color: #8b4f8d;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    margin-top: 2rem;
    max-width: 400px;
}

.hero-visual img {
    margin: 0 auto;
}

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

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

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

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

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

.btn-primary:hover {
    background-color: #6a3a6c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 79, 141, 0.3);
}

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

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

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

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

section h2 {
    font-size: 1.75rem;
    color: #8b4f8d;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

.intro-content p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1rem;
}

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

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

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    color: #555;
    margin-bottom: 1rem;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.value-card h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: #666;
}

/* Services Highlight */
.services-highlight {
    background-color: #fff;
}

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

.service-card {
    background-color: #f8f4f8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 79, 141, 0.15);
}

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

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

.service-card p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

.benefit-icon {
    flex-shrink: 0;
}

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

.benefit-content h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

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

.step h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.step p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

.testimonial p {
    font-size: 1.0625rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.9375rem;
    color: #8b4f8d;
    font-weight: 600;
    font-style: normal;
}

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

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

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

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

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.faq-item {
    background-color: #f8f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon::after {
    content: '+';
    font-size: 1.5rem;
    color: #8b4f8d;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    content: '−';
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #555;
}

/* Tips Section */
.tips-section {
    background-color: #f8f4f8;
}

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

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

.tip-card h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #555;
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8b4f8d 0%, #6a3a6c 100%);
    color: #fff;
}

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

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

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

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

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

.story-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-content p {
    color: #555;
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

/* Mission Section */
.mission-section {
    background-color: #f8f4f8;
}

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

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

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

.mission-item h3 {
    font-size: 1.25rem;
    color: #8b4f8d;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

.value-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f8f4f8;
    color: #8b4f8d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.value-item h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f8f4f8;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9375rem;
    color: #999;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
    font-size: 0.9375rem;
}

/* Approach Section */
.approach-section {
    background-color: #fff;
}

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

.approach-text p {
    color: #555;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.approach-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-box {
    background-color: #f8f4f8;
    padding: 1.5rem;
    border-radius: 12px;
}

.highlight-box h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #8b4f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

.commitment-item {
    background-color: #f8f4f8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.commitment-item h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.commitment-item p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

.services-catalog h2 {
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.services-catalog h2:first-of-type {
    margin-top: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #555;
    font-size: 0.9375rem;
}

.service-price {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4f8d;
}

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

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

.benefit-card {
    background-color: #f8f4f8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.benefit-card h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #555;
    font-size: 0.9375rem;
}

/* Process Detail */
.process-detail-section {
    background-color: #f8f4f8;
}

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

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

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

.process-step h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #555;
    font-size: 0.9375rem;
}

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

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

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

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

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

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

.contact-item h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #555;
    font-size: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

.hours-list span {
    font-weight: 600;
    color: #333;
}

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

.info-box {
    background-color: #f8f4f8;
    padding: 2rem;
    border-radius: 12px;
}

.info-box h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 1rem;
}

.info-box p {
    color: #555;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.checklist {
    list-style: none;
    margin: 1rem 0;
}

.checklist li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #555;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4f8d;
    font-weight: 700;
}

/* Directions Section */
.directions-section {
    background-color: #f8f4f8;
}

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

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

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

.direction-card h3 {
    font-size: 1.125rem;
    color: #8b4f8d;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: #555;
    font-size: 0.9375rem;
}

.direction-card strong {
    color: #333;
}

/* About Location */
.about-location-section {
    background-color: #fff;
}

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

.location-content p {
    color: #555;
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

/* Company Info */
.company-info-section {
    background-color: #f8f4f8;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-item h3 {
    font-size: 1rem;
    color: #8b4f8d;
    margin-bottom: 0.5rem;
}

.company-item p {
    color: #555;
    font-size: 0.9375rem;
}

/* Thank You Page */
.thank-you-section {
    background-color: #fff;
    padding: 6rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #8b4f8d;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #555;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

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

.legal-text h2 {
    font-size: 1.5rem;
    color: #8b4f8d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.legal-text h3 {
    font-size: 1.25rem;
    color: #6a3a6c;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-text li {
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #333;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f8f4f8;
    color: #8b4f8d;
    font-weight: 600;
}

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

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

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

.footer-col h4 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

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

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

.cookie-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.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);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.cookie-modal-content h3 {
    font-size: 1.5rem;
    color: #8b4f8d;
    margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #666;
    font-size: 0.875rem;
}

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

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        border: none;
    }

    .nav-link {
        padding: 0.5rem 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
    }

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

    .services-grid,
    .benefits-grid,
    .tips-grid,
    .testimonials-grid,
    .commitment-grid,
    .mission-grid,
    .team-grid,
    .directions-grid,
    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card,
    .tip-card,
    .testimonial,
    .commitment-item,
    .mission-item,
    .team-member,
    .direction-card,
    .process-step,
    .benefit-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .philosophy-grid,
    .approach-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-values {
        flex: 1;
    }

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

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

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

    .contact-details,
    .contact-additional {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

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

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .hero .container {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
    }

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

    .hero-visual {
        flex: 1;
        margin-top: 0;
    }

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

    .tip-card,
    .testimonial,
    .commitment-item,
    .direction-card,
    .process-step {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

    .mission-item,
    .team-member {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

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

    section h2 {
        font-size: 2rem;
    }
}
