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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.nav-list a {
    display: block;
    padding: 1rem 20px;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #2563eb;
    color: #fff;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #fff;
    color: #2563eb;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #f3f4f6;
    color: #333;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Intro */
.company-intro {
    background-color: #f9fafb;
}

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

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

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.intro-visual {
    text-align: center;
}

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

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

.value-card {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

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

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-highlight {
    padding: 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-highlight:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
}

.service-highlight img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-highlight h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-highlight p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Statistics */
.statistics {
    background-color: #2563eb;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

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

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

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

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

.testimonial {
    padding: 2rem;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
}

/* Sectors */
.sectors {
    background-color: #f9fafb;
}

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

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

.sector h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.sector p {
    color: #6b7280;
    line-height: 1.7;
}

/* Expertise Insights */
.expertise-insights {
    background-color: #fff;
}

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

.insight {
    padding: 2rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.insight h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.insight p {
    color: #4b5563;
    line-height: 1.7;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 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;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.story-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

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

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

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

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

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

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

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.team-member p {
    color: #6b7280;
    line-height: 1.7;
}

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

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

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

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

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

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

.achievement {
    padding: 2rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.achievement h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.achievement p {
    color: #4b5563;
    line-height: 1.7;
}

/* Values Detailed */
.values-detailed {
    background-color: #f9fafb;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.value-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-detail p {
    color: #6b7280;
    line-height: 1.7;
}

/* Approach */
.approach {
    background-color: #fff;
}

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

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

.approach-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

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

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

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

.service-card {
    padding: 2rem;
    background-color: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: left;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

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

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit p {
    color: #6b7280;
    line-height: 1.7;
}

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

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-step h3 {
    font-size: 1.3rem;
    color: #1f2937;
}

.flow-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Service Comparison */
.service-comparison {
    background-color: #f9fafb;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.comparison-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.comparison-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.comparison-list li {
    margin-bottom: 0.75rem;
    color: #6b7280;
    line-height: 1.7;
}

.comparison-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
    color: #4b5563;
    line-height: 1.7;
}

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

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

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

.contact-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-note {
    font-style: italic;
    margin-top: 0.5rem;
    color: #6b7280;
}

.contact-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

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

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

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

.direction-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.direction-block p {
    color: #6b7280;
    line-height: 1.7;
}

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

/* Company Details */
.company-details {
    background-color: #f9fafb;
}

.company-info {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-info p {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Thank You Section */
.thank-you-section {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content h1 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

.step-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Additional Info */
.additional-info {
    background-color: #fff;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-block p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.legal-text h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-text h3 {
    text-align: left;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.legal-text h4 {
    text-align: left;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

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

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-text strong {
    color: #1f2937;
}

.cookie-table {
    width: 100%;
    margin: 1rem 0 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table tr:last-child {
    border-bottom: none;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.cookie-table td:first-child {
    width: 30%;
    background-color: #f9fafb;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-col a {
    color: #d1d5db;
    transition: color 0.3s;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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 {
    color: #d1d5db;
    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.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

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

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

.cookie-modal-content h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-option span {
    font-weight: 600;
    color: #1f2937;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        gap: 0.5rem;
    }

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

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

    .mobile-menu-toggle {
        display: none;
    }

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

    .values-grid,
    .services-showcase,
    .process-steps,
    .stats-grid,
    .testimonials-grid,
    .sectors-grid,
    .insights-grid,
    .philosophy-grid,
    .team-grid,
    .achievements-grid,
    .values-content,
    .approach-grid,
    .services-grid,
    .benefits-grid,
    .comparison-content,
    .contact-grid,
    .directions-content,
    .steps-grid,
    .info-blocks,
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .service-highlight,
    .sector,
    .insight,
    .philosophy-item,
    .team-member,
    .achievement,
    .value-detail,
    .approach-item,
    .benefit,
    .comparison-column,
    .direction-block,
    .step-item,
    .info-block,
    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

    .contact-block {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

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

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

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

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

    .page-header h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .value-card,
    .philosophy-item,
    .value-detail,
    .footer-col {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .stat {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .sector,
    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .benefit,
    .step-item,
    .info-block {
        flex: 1 1 calc(50% - 1rem);
    }
}
