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

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

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

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

a {
    color: #2c7da0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #014f86;
}

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

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

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

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

.logo:hover {
    color: #014f86;
}

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

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #e8f4f8;
    color: #2c7da0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

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

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

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

.hero-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

.subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #2c7da0;
    color: #fff;
    border-color: #2c7da0;
}

.btn-primary:hover {
    background-color: #014f86;
    border-color: #014f86;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c7da0;
    border-color: #2c7da0;
}

.btn-secondary:hover {
    background-color: #2c7da0;
    color: #fff;
}

.btn-text {
    background: none;
    color: #666;
    border: none;
    padding: 0.875rem 1rem;
}

.btn-text:hover {
    color: #333;
}

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

section h2 {
    font-size: 1.75rem;
    color: #2c7da0;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.section-intro p {
    font-size: 1.05rem;
    color: #555;
}

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

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

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

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

.philosophy-icon {
    margin: 0 auto 1rem;
}

.philosophy-item h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.philosophy-item p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.service-card h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

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

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

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

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

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2c7da0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

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

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

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1.5rem;
}

.benefits-list strong {
    display: block;
    color: #2c7da0;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: #555;
    line-height: 1.7;
}

.benefits-visual {
    width: 100%;
}

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

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

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

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c7da0;
}

/* Statistics */
.statistics {
    background-color: #2c7da0;
    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;
}

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

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

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

.knowledge-item h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.knowledge-item p {
    color: #555;
    line-height: 1.7;
}

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

.faq-services {
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2c7da0;
    font-weight: 400;
    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: #555;
    line-height: 1.7;
}

/* CTA Sections */
.cta-final,
.cta-about,
.cta-services {
    background: linear-gradient(135deg, #2c7da0 0%, #014f86 100%);
    color: #fff;
    text-align: center;
}

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

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

/* About Page */
.story,
.approach {
    background-color: #fff;
}

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

.content-block p {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

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

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

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

.value-icon {
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #2c7da0;
    margin-bottom: 1rem;
}

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

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

.team-member {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.member-placeholder {
    width: 100%;
    aspect-ratio: 1;
}

.team-member h3 {
    color: #2c7da0;
    margin: 1.5rem 1rem 0.5rem;
}

.member-role {
    color: #f77f00;
    font-weight: 600;
    margin: 0 1rem 1rem;
}

.team-member p {
    color: #555;
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
}

/* Achievements/Timeline */
.achievements {
    background-color: #f8f9fa;
}

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

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

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

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    display: inline-block;
    background-color: #2c7da0;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.timeline-content h3 {
    color: #2c7da0;
    margin-bottom: 0.5rem;
}

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

/* Trust Indicators */
.trust-indicators {
    background-color: #fff;
}

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

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

.indicator h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.indicator p {
    color: #555;
    line-height: 1.7;
}

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

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

.services-category h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.service-detail {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c7da0;
}

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

.service-header h3 {
    color: #2c7da0;
}

.service-price {
    font-weight: 700;
    color: #f77f00;
    font-size: 1.125rem;
}

.service-detail p {
    color: #555;
    line-height: 1.7;
}

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

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

.benefit-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.benefit-item h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Service Process */
.service-process {
    background-color: #fff;
}

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

.process-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.process-icon {
    margin-bottom: 1rem;
}

.process-block h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.process-block p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.contact-block h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-detail {
    color: #555;
    line-height: 1.8;
}

.contact-detail a {
    color: #2c7da0;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #555;
}

.contact-visual {
    width: 100%;
    margin-top: 1rem;
}

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

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

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

.direction-item h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

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

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

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

.info-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #2c7da0;
}

.info-value {
    color: #555;
}

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
}

/* Visit Us */
.visit-us {
    background-color: #fff;
    text-align: center;
}

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

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

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

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

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

.thankyou-icon {
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    color: #2c7da0;
    margin-bottom: 1rem;
}

.thankyou-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Next Steps */
.next-steps {
    background-color: #f8f9fa;
}

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

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

.step-card h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

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

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

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

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: #2c7da0;
    text-align: left;
    margin: 2rem 0 1rem;
}

.legal-text h3 {
    font-size: 1.25rem;
    color: #2c7da0;
    text-align: left;
    margin: 1.5rem 0 0.75rem;
}

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

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

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

.update-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #777;
    font-style: italic;
}

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

.cookies-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    line-height: 1.6;
}

.cookies-table td:first-child {
    width: 30%;
}

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

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px 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-direction: column;
    gap: 1rem;
}

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

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

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

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

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

.modal-content h2 {
    color: #2c7da0;
    margin-bottom: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

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

.cookie-option strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

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

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

.approach-item h3 {
    color: #2c7da0;
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

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

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

    .nav-menu a {
        padding: 0.5rem 1rem;
        border-radius: 6px;
    }

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

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

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

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

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

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

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

    .benefits-wrapper {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .indicator {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

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

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

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

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

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

    .contact-info,
    .contact-visual {
        flex: 1;
    }

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

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

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

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

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

    .step-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

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

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

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

    .philosophy-item {
        min-width: calc(33.333% - 1.334rem);
    }

    .service-card {
        min-width: calc(50% - 0.75rem);
    }

    .process-step {
        min-width: calc(25% - 1.125rem);
    }

    .testimonial {
        min-width: calc(33.333% - 1rem);
    }

    .stat-item {
        min-width: calc(25% - 1.5rem);
    }

    .knowledge-item {
        min-width: calc(33.333% - 1rem);
    }

    .value-card {
        min-width: calc(33.333% - 1.334rem);
    }

    .team-member {
        min-width: calc(33.333% - 1.334rem);
    }

    .indicator {
        min-width: calc(50% - 0.75rem);
    }

    .benefit-item {
        min-width: calc(33.333% - 1rem);
    }

    .process-block {
        min-width: calc(25% - 1.125rem);
    }

    .direction-item {
        min-width: calc(50% - 0.75rem);
    }

    section {
        padding: 4rem 0;
    }
}