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

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

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

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

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

ul {
    list-style: none;
}

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

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

/* Header e Navigazione */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s;
}

.hamburger::before {
    transform: translateY(-7px);
}

.hamburger::after {
    transform: translateY(7px);
}

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: #f8f8f8;
    color: #8b4513;
}

.nav-link.active {
    color: #8b4513;
    background-color: #fef6f0;
}

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

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

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

.hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

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

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

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #8b4513;
    color: #fff;
}

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

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Company Philosophy */
.company-philosophy {
    background-color: #f8f8f8;
}

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

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

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

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

/* Featured Service */
.featured-service {
    background-color: #fff;
}

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

.featured-text .label {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.featured-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #8b4513 0%, #6d3410 100%);
    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;
    margin-bottom: 0.5rem;
}

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

/* Process Steps */
.process {
    background-color: #f8f8f8;
}

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

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

.step-number {
    display: inline-block;
    background-color: #fef6f0;
    color: #8b4513;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.step p {
    color: #555;
    line-height: 1.6;
}

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

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

.testimonial {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #666;
}

/* Benefits */
.benefits {
    background-color: #f8f8f8;
}

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

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

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

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

.benefit-content p {
    color: #555;
    line-height: 1.6;
}

/* Industries */
.industries {
    background-color: #fff;
}

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

.industry-card {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.industry-card h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #555;
    line-height: 1.6;
}

/* Knowledge Section */
.knowledge {
    background-color: #f8f8f8;
}

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

.knowledge-list {
    list-style: none;
    margin: 1.5rem 0;
}

.knowledge-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.knowledge-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
}

.knowledge-list strong {
    color: #1a1a1a;
}

.knowledge-visual {
    display: flex;
    justify-content: center;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: #fff;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.3s;
}

.faq-question:hover,
.faq-question:focus {
    background-color: #f8f8f8;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #8b4513;
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

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

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

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

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

.cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #8b4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.875rem;
}

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

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

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

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

.cookie-content a {
    color: #8b4513;
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #fef6f0 0%, #fff 100%);
    padding: 3rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #8b4513;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #8b4513;
    border: 3px solid #f8f8f8;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

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

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

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

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

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

.member-info {
    margin-bottom: 1rem;
}

.member-info h3 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #8b4513;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* Values */
.values {
    background-color: #f8f8f8;
}

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

.value-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

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

.value-card h3 {
    margin-bottom: 0.75rem;
    color: #8b4513;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Partners */
.partners {
    background-color: #fff;
}

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

.partner-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.partner-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.partner-item p {
    color: #555;
    line-height: 1.6;
}

/* Commitment */
.commitment {
    background-color: #f8f8f8;
}

.commitment-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

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

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

.intro-content p {
    color: #555;
    line-height: 1.6;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-header h3 {
    margin: 0;
    color: #1a1a1a;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b4513;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.benefit-box {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

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

.benefit-box h3 {
    margin-bottom: 0.75rem;
    color: #8b4513;
}

.benefit-box p {
    color: #555;
    line-height: 1.6;
}

/* Comparison */
.comparison {
    background-color: #f8f8f8;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.comparison-aspect h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.comparison-ours,
.comparison-others {
    margin-bottom: 1rem;
}

.comparison-ours p,
.comparison-others p {
    color: #555;
    line-height: 1.6;
}

.comparison-ours strong {
    color: #8b4513;
}

.comparison-others strong {
    color: #666;
}

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

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

.step-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.step-badge {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.step-item p {
    color: #555;
    line-height: 1.6;
}

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

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

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

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

.contact-card h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

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

.location-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.direction-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.direction-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.direction-item p {
    color: #555;
    line-height: 1.6;
}

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

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

.detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: #555;
}

/* Visit Tips */
.visit-tips {
    background-color: #fff;
}

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

.tip-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.tip-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.tip-item p {
    color: #555;
    line-height: 1.6;
}

/* Opening Note */
.opening-note {
    background-color: #f8f8f8;
}

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

.note-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    background-color: #fff;
}

.legal-intro {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

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

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

.legal-content ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-content table th,
.legal-content table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.legal-content table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content table td {
    color: #555;
}

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

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

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

    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 4px;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

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

    .philosophy-item {
        flex: 1;
        min-width: 250px;
    }

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

    .featured-text,
    .featured-visual {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .step {
        flex: 1;
        min-width: 250px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

    .industry-card {
        flex: 1;
        min-width: 280px;
    }

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

    .knowledge-content,
    .knowledge-visual {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
        min-width: 300px;
    }

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

    .value-card {
        flex: 1;
        min-width: 250px;
    }

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

    .benefit-box {
        flex: 1;
        min-width: 250px;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
        min-width: 250px;
    }

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

    .tip-item {
        flex: 1;
        min-width: 280px;
    }

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

    .detail-label {
        flex: 0 0 35%;
    }

    .detail-value {
        flex: 1;
        text-align: right;
    }

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

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

    .cookie-buttons .btn {
        width: auto;
    }

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

    .cookie-modal-buttons .btn {
        width: auto;
        flex: 1;
    }

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

    .thank-you-actions .btn {
        width: auto;
    }

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

    .footer-col {
        flex: 1;
        min-width: 200px;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2.25rem;
    }

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