:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0891b2;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-color: #0ea5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav {
    padding: 1rem 0;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    padding: 1rem 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.page-hero {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

section {
    padding: 4rem 0;
}

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

.philosophy {
    background: var(--bg-light);
}

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

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

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

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.philosophy-icon img {
    width: 40px;
    height: 40px;
}

.featured-service {
    background: white;
}

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

.featured-text h2 {
    margin-bottom: 1.5rem;
}

.featured-text .btn-secondary {
    margin-top: 1rem;
}

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

.featured-visual img {
    max-width: 100%;
    width: 100%;
}

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

.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;
}

.service-highlights h2,
.service-cards {
    text-align: center;
}

.service-highlights h2 {
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-card-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

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

.process {
    background: var(--bg-light);
}

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

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.process-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.testimonials {
    background: white;
}

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

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

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

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.values {
    background: var(--bg-light);
}

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

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.knowledge {
    background: white;
}

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

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

.knowledge-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

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

.faq {
    background: var(--bg-light);
}

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

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.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 1.25rem 1.25rem;
    color: var(--text-light);
}

.industries {
    background: white;
}

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

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

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

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

.cta {
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
    text-align: center;
}

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

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

.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

.footer-col a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-preferences {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-preferences {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-preferences:hover {
    background: white;
    color: var(--text-color);
}

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

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

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

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

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

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

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

.btn-save,
.btn-close {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-save:hover {
    background: var(--primary-dark);
}

.btn-close {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-close:hover {
    background: var(--text-light);
    color: white;
}

.story {
    background: white;
}

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

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

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

.milestones {
    background: var(--bg-light);
}

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

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.team {
    background: white;
}

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

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

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.company-values {
    background: var(--bg-light);
}

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

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

.value-detailed {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.benefits {
    background: white;
}

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

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

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

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

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

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

.achievements {
    background: var(--bg-light);
}

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

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

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

.trust {
    background: white;
}

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

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

.trust-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-intro {
    background: white;
}

.services-intro h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.services-list {
    background: var(--bg-light);
}

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

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-detail-header h3 {
    margin-bottom: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-benefits {
    background: white;
}

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

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

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.process-details {
    background: var(--bg-light);
}

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

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

.process-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.comparison {
    background: white;
}

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

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-bottom: none;
}

.header-cell {
    font-weight: 700;
    background: var(--primary-color);
    color: white;
}

.contact-info {
    background: white;
}

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

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

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

.contact-card a {
    color: var(--text-color);
}

.about-contact {
    background: var(--bg-light);
}

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

.about-contact p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.directions {
    background: white;
}

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

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

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

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

.visit-info {
    background: var(--bg-light);
}

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

.visit-info p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.company-details {
    background: white;
}

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

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

.legal-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.legal-item h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-item p {
    font-weight: 600;
    margin-bottom: 0;
}

.service-area {
    background: var(--bg-light);
}

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

.area-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.area-column {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.area-column li:last-child {
    border-bottom: none;
}

.area-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

.thank-you-content {
    padding: 6rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-color);
    border-radius: 50%;
}

.thank-you-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.thank-you-box h1 {
    margin-bottom: 1.5rem;
}

.thank-you-box p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

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

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.useful-links {
    background: white;
}

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

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

.link-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.legal-content {
    background: white;
}

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

.legal-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

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

.legal-section ul {
    padding-left: 1.5rem;
}

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

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: none;
    }

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

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

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

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

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

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

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

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

    .footer-col {
        flex: 0 0 calc(33.333% - 1rem);
    }

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

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

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

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

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

    .achievement-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .benefit-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .comparison-cell {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

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

    .area-list {
        flex-direction: row;
    }

    .area-column {
        flex: 1;
    }

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

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

    .step-card {
        flex: 1;
    }

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

    .link-card {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .testimonial {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .value-item {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

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

    .process-step {
        flex: 0 0 calc(25% - 1.5rem);
    }
}