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

:root {
    --primary-color: #c4966f;
    --secondary-color: #2c2416;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e0d9d0;
    --success-color: #4a7c59;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

a:hover {
    color: var(--success-color);
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: lowercase;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
    padding-top: 80px;
}

.nav.active {
    right: 0;
}

.nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav ul li {
    border-bottom: 1px solid var(--border-color);
}

.nav ul li a {
    display: block;
    padding: 18px 30px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav ul li a:hover,
.nav ul li a.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px 0;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Page Hero */
.page-hero {
    background-color: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}

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

section h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

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

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

.value-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
}

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

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.philosophy-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Services Highlight */
.services-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-highlight {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-highlight h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-highlight p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.link-arrow:hover {
    color: var(--accent-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}

/* Industries Served */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.industry-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.industry-item p {
    color: var(--text-light);
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Insights Grid */
.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.insight-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Sections */
.cta-final,
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--bg-white);
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.cta-content .btn-primary:hover {
    background-color: var(--bg-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(196, 150, 111, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-box {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.benefit-box h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-box p {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-col {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.comparison-col.highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(196, 150, 111, 0.15);
}

.comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.comparison-col h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.comparison-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    display: block;
    margin-bottom: 25px;
}

.comparison-features {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-features li {
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.comparison-features li.included:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.comparison-features li.not-included {
    color: var(--text-light);
    opacity: 0.6;
}

.comparison-features li.not-included:before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.comparison-best-for {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-phase {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.phase-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.process-phase h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-phase p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.phase-duration {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-block p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.info-item p {
    margin-bottom: 0;
}

.contact-about {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-about h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-about p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Directions */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.direction-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Company Info Block */
.company-details {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.detail-value {
    color: var(--text-light);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--border-color);
}

.team-member h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
}

/* Approach Content */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Achievements */
.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.achievement-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.benefit-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Deep */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-deep {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-deep h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.value-deep p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.thank-you-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.next-steps {
    background-color: var(--bg-light);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.step-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 40px 0;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    text-align: left;
    font-size: 26px;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--secondary-color);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    overflow-x: auto;
    display: block;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

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

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

.cookie-option span {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-option p {
    margin-left: 24px;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 14px;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

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

    .nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
    }

    .nav ul {
        flex-direction: row;
        gap: 30px;
    }

    .nav ul li {
        border-bottom: none;
    }

    .nav ul li a {
        padding: 10px 0;
    }

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

    .hero h1 {
        font-size: 42px;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

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

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

    .service-highlight {
        flex: 0 0 calc(50% - 15px);
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .industry-item {
        flex: 0 0 calc(50% - 10px);
    }

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

    .trust-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .insight-card {
        flex: 1;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .benefit-box {
        flex: 0 0 calc(50% - 10px);
    }

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

    .comparison-col {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
        gap: 50px;
    }

    .contact-details {
        flex: 1;
    }

    .contact-about {
        flex: 1;
    }

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

    .direction-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

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

    .team-member {
        flex: 0 0 calc(50% - 15px);
    }

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

    .approach-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .achievement-card {
        flex: 0 0 calc(50% - 10px);
    }

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

    .value-deep {
        flex: 0 0 calc(50% - 12.5px);
    }

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

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

    .step-card {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    section h2 {
        font-size: 32px;
    }

    .value-card {
        flex: 0 0 calc(33.333% - 20px);
    }

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

    .philosophy-text {
        flex: 1;
    }

    .philosophy-stats {
        flex: 0 0 300px;
        flex-direction: column;
    }

    .service-highlight {
        flex: 0 0 calc(33.333% - 20px);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 17px);
    }

    .industry-item {
        flex: 0 0 calc(33.333% - 14px);
    }

    .trust-item {
        flex: 0 0 calc(25% - 19px);
    }

    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .team-member {
        flex: 0 0 calc(25% - 23px);
    }

    .approach-item {
        flex: 0 0 calc(25% - 19px);
    }

    .achievement-card {
        flex: 0 0 calc(25% - 15px);
    }

    .direction-item {
        flex: 0 0 calc(33.333% - 17px);
    }
}
