/* 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: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a45c;
}

.logo a {
    color: #c9a45c;
}

.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

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

.nav-list a {
    display: block;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #c9a45c;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.hero-subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.page-subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #c9a45c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b8934d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 164, 92, 0.3);
}

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

.btn-secondary:hover {
    background-color: #c9a45c;
    color: #ffffff;
}

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

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: -1rem auto 2.5rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

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

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image {
    text-align: center;
}

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

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

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

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

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

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

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

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

.service-highlight-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.service-highlight-card h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-highlight-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #c9a45c;
}

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

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-point h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.philosophy-point p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #c9a45c;
}

.testimonial-text {
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #c9a45c 0%, #b8934d 100%);
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

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

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

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

.process-step {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #c9a45c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

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

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

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

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

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

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
}

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

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    text-align: center;
}

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

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

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

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

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

.story-content p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

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

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

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

.mission-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.875rem;
}

.mission-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

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

.team-role {
    font-size: 0.95rem;
    color: #c9a45c;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-point h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.approach-point p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a45c;
}

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

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

/* Values Deep Section */
.values-deep-section {
    background-color: #f8f9fa;
}

.values-deep-content {
    max-width: 850px;
    margin: 0 auto;
}

.values-deep-content p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

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

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

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

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

.trust-item h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.services-list-section {
    background-color: #ffffff;
}

.service-category {
    margin-bottom: 3rem;
}

.service-category h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

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

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.service-duration {
    color: #7a8a9a;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c9a45c;
}

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
}

.benefit-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: #2c3e50;
}

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

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

.comparison-row {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.comparison-question h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.comparison-answer p {
    color: #5a6c7d;
    line-height: 1.8;
}

.comparison-answer strong {
    color: #c9a45c;
}

/* Process Steps */
.process-steps-section {
    background-color: #f8f9fa;
}

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

.step-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number-small {
    width: 36px;
    height: 36px;
    background-color: #c9a45c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.step-card h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.625rem;
}

.step-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.25rem;
}

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

.contact-card h2 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #c9a45c;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #7a8a9a;
    margin-top: 0.5rem;
}

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

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

.about-location-content p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

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

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

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

.direction-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

.direction-card strong {
    color: #2c3e50;
}

/* Booking Info */
.booking-info-section {
    background-color: #f8f9fa;
}

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

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.booking-step {
    display: flex;
    gap: 1.25rem;
}

.booking-step-number {
    width: 40px;
    height: 40px;
    background-color: #c9a45c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.booking-step-content h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.625rem;
}

.booking-step-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.booking-step-content a {
    color: #c9a45c;
}

.booking-note {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #c9a45c;
    margin-top: 2rem;
}

.booking-note p {
    margin-bottom: 0.75rem;
}

.booking-note ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.booking-note li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.company-info-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.company-info-content strong {
    color: #2c3e50;
}

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

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

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

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

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

.thank-you-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

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

.legal-intro {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.legal-text p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1rem;
}

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

.legal-text li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #c9a45c;
    text-decoration: underline;
}

.legal-text strong {
    color: #2c3e50;
}

.legal-date {
    font-style: italic;
    color: #7a8a9a;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

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

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

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

.footer-col p {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-col a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c9a45c;
}

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

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

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

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

.cookie-banner-text p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: #c9a45c;
    text-decoration: underline;
}

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

.cookie-banner-buttons button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #c9a45c;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #b8934d;
}

.cookie-settings {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal-content {
    background-color: #ffffff;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #2c3e50;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    background-color: #e8e8e8;
}

.cookie-preferences {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cookie-preference {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.cookie-preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-preference-header h3 {
    font-size: 1.125rem;
    color: #2c3e50;
}

.cookie-preference p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-preference label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-preference input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

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

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

.cookie-modal-buttons button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save {
    background-color: #c9a45c;
    color: #ffffff;
}

.cookie-save:hover {
    background-color: #b8934d;
}

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

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

    .nav-list li {
        padding: 0;
    }

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

    .intro-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .intro-text {
        flex: 1;
    }

    .intro-image {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .cookie-banner-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

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

@media (min-width: 1024px) {
    .value-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

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

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

    .mission-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .trust-item {
        flex: 1 1 calc(25% - 1.125rem);
    }

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

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        min-width: 100px;
        flex-shrink: 0;
    }
}

/* Utility Classes */
.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;
}