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

:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --background-light: #FAFAFA;
    --background-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

/* Header and Navigation */
.main-header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 0;
    text-align: center;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--background-white);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Services Highlight */
.services-highlight {
    background-color: var(--background-white);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Benefits */
.why-us {
    background-color: var(--background-light);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Steps */
.process {
    background-color: var(--background-light);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    flex: 1 1 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.75rem;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat {
    flex: 1 1 200px;
    text-align: center;
}

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

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

/* Industries */
.industries {
    background-color: var(--background-white);
}

.industries h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.industry-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
    background-color: var(--background-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
    text-align: center;
    padding: 5rem 0;
}

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

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

.cta-section .cta-button {
    background-color: var(--background-white);
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background-color: var(--background-light);
    color: var(--primary-dark);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section ul {
    list-style: none;
    margin: 0;
}

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

.footer-section ul li a {
    color: var(--background-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.settings {
    background-color: transparent;
    color: var(--background-white);
    border: 1px solid var(--background-white);
}

.cookie-btn.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);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

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

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

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

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

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

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

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

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

/* About Page - Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

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

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* About Page - Values */
.values {
    background-color: var(--background-white);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

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

/* About Page - Timeline */
.milestones {
    background-color: var(--background-light);
}

.milestones h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Story Section */
.story {
    background-color: var(--background-white);
}

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

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

/* Trust Indicators */
.trust-indicators {
    background-color: var(--background-light);
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

/* Approach Section */
.approach {
    background-color: var(--background-white);
}

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

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

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

.services-list {
    background-color: var(--background-white);
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    font-style: italic;
}

.service-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.0625rem;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-option {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.service-option p {
    margin-bottom: 0.75rem;
}

.price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* Service Benefits */
.service-benefits {
    background-color: var(--background-light);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Process Overview */
.process-overview {
    background-color: var(--background-white);
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-icon {
    min-width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Services */
.faq-services {
    background-color: var(--background-light);
}

.faq-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Contact Page */
.contact-intro {
    background-color: var(--background-light);
}

.contact-details {
    background-color: var(--background-white);
}

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

.contact-info,
.company-info {
    flex: 1 1 400px;
}

.info-block {
    margin-bottom: 2rem;
}

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

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Directions */
.directions {
    background-color: var(--background-light);
}

.directions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.direction-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact FAQ */
.contact-faq {
    background-color: var(--background-white);
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Working With Us */
.working-with-us {
    background-color: var(--background-light);
}

.working-with-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expectation-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

/* Business Info */
.business-info {
    background-color: var(--background-white);
}

.business-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.business-details {
    max-width: 600px;
    margin: 0 auto;
}

.business-details p {
    margin-bottom: 0.75rem;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 5rem 0;
}

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* While Waiting */
.while-waiting {
    background-color: var(--background-light);
}

.while-waiting h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.waiting-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.waiting-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.waiting-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.waiting-item a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    background-color: var(--background-white);
    padding: 4rem 0;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.legal-section h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--background-white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .service-grid,
    .benefits-list,
    .testimonial-grid,
    .process-steps,
    .stats-grid,
    .industry-list,
    .team-grid,
    .values-grid,
    .trust-grid,
    .service-options,
    .benefits-grid,
    .contact-grid,
    .directions-content,
    .expectations-grid,
    .waiting-grid {
        flex-direction: column;
    }

    .benefit-item,
    .industry-item,
    .value-item,
    .service-option,
    .benefit-card,
    .direction-item,
    .expectation-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .cookie-btn {
        width: 100%;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .cta-button,
    .secondary-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}