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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #4A9BC7;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C5F7C;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2C5F7C;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

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

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.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.1);
    padding: 1rem 0;
    list-style: none;
}

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

.nav-menu li {
    margin: 0;
}

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

.nav-link:hover,
.nav-link.active {
    background-color: #E8F4F8;
    color: #2C5F7C;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background-color: #1f4456;
    color: #fff;
}

.btn-secondary {
    background-color: #4A9BC7;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #3a7fa0;
    color: #fff;
}

.btn-text {
    background-color: transparent;
    color: #2C5F7C;
    padding: 0.875rem 1rem;
}

.btn-text:hover {
    background-color: #f5f5f5;
    transform: none;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

.hero-visual {
    width: 100%;
    max-width: 400px;
}

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

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

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.page-hero .lead {
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.0625rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    margin-bottom: 1.25rem;
}

.benefit-card h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

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

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

.service-feature {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-feature-icon {
    margin-bottom: 1.5rem;
}

.service-feature h3 {
    color: #2C5F7C;
    margin-bottom: 1rem;
}

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

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

.philosophy-text h2 {
    color: #2C5F7C;
    margin-bottom: 1.25rem;
}

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

.philosophy-visual svg {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #2C5F7C 0%, #4A9BC7 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;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #E8F4F8;
}

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

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4A9BC7;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial footer {
    font-weight: 600;
    color: #2C5F7C;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2C5F7C, #4A9BC7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    color: #2C5F7C;
    margin-bottom: 0.5rem;
}

/* Industries */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    padding: 1.75rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.industry-item h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

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

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

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

.knowledge-card h3 {
    color: #2C5F7C;
    margin-bottom: 1rem;
}

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

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

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #2C5F7C;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2C5F7C 0%, #4A9BC7 100%);
    color: #fff;
    text-align: center;
}

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

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

.cta-secondary {
    background-color: #f9fafb;
    text-align: center;
}

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

.cta-secondary p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.25rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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;
    flex: 1;
}

.cookie-content a {
    color: #4A9BC7;
}

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    background-color: #fff;
    max-width: 600px;
    margin: 3rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2C5F7C;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #f5f5f5;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option-header {
    margin-bottom: 0.5rem;
}

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

.cookie-option-title {
    color: #2C5F7C;
}

.cookie-option-desc {
    color: #555;
    font-size: 0.9375rem;
    margin-left: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

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

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

.story h2 {
    color: #2C5F7C;
    margin-bottom: 1.5rem;
}

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

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

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

.value-icon {
    margin-bottom: 1.25rem;
}

.value-card h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

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

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

.team-member {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-icon {
    margin-bottom: 1.25rem;
}

.team-member h3 {
    color: #2C5F7C;
    margin-bottom: 0.25rem;
}

.member-role {
    font-weight: 600;
    color: #4A9BC7;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

/* Expertise */
.expertise {
    background-color: #f9fafb;
}

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

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

.expertise-item h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #4A9BC7;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4A9BC7;
}

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

/* Certifications */
.certifications {
    background-color: #f9fafb;
}

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

.cert-item {
    background-color: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cert-item h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

/* Principles */
.principles-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle {
    padding: 1.75rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

.principle h3 {
    color: #2C5F7C;
    margin-bottom: 1rem;
}

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

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

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

.services-list.alt {
    background-color: #f9fafb;
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-header h3 {
    color: #2C5F7C;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A9BC7;
}

.service-benefits {
    background-color: #f9fafb;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.benefit-item svg {
    margin-bottom: 1rem;
}

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

.process-overview {
    background-color: #fff;
}

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

.flow-step {
    padding: 1.75rem;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.flow-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2C5F7C, #4A9BC7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.flow-arrow {
    display: none;
}

.flow-step h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

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

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

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

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

.contact-block h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #777;
    font-style: italic;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4A9BC7;
    font-weight: 700;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.highlight-box h3 {
    color: #d68400;
    margin-bottom: 0.75rem;
}

.directions {
    background-color: #f9fafb;
}

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

.direction-method {
    background-color: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.direction-method h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

.service-area {
    background-color: #fff;
}

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

.area-item {
    padding: 1.75rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

.area-item h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

.contact-faq {
    background-color: #f9fafb;
}

.company-info-section {
    background-color: #fff;
}

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

.company-data {
    margin-top: 2rem;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.data-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.data-table td {
    padding: 0.75rem 0;
    vertical-align: top;
}

.data-table td:first-child {
    font-weight: 600;
    color: #555;
    width: 40%;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #fff 100%);
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-details {
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

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

.contact-info-brief {
    background-color: #f9fafb;
    text-align: center;
}

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

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

.method h3 {
    color: #2C5F7C;
    margin-bottom: 0.75rem;
}

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

.legal-page h1 {
    color: #2C5F7C;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #E8F4F8;
    border-radius: 8px;
}

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

.legal-content h2 {
    color: #2C5F7C;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #2C5F7C;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    font-weight: 600;
    color: #2C5F7C;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .nav-toggle {
        display: none;
    }

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

    .nav-link {
        padding: 0.5rem 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .direction-method {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

    .area-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

    .method {
        flex: 1;
    }

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

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

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

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

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

    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

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

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

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1;
    }

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

    .philosophy-text {
        flex: 1;
    }

    .philosophy-visual {
        flex: 1;
    }

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

    .benefit-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

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

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

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

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

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

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

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    .expertise-list {
        flex-wrap: wrap;
    }

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

    .cert-grid {
        flex-wrap: nowrap;
    }

    .cert-item {
        flex: 1;
    }

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

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

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

    .flow-step {
        flex: 1;
    }

    .flow-arrow {
        display: block;
        font-size: 2rem;
        color: #4A9BC7;
        font-weight: 700;
        padding: 0 1rem;
    }

    .footer-grid {
        flex-wrap: nowrap;
    }

    .footer-col {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .cta,
    .cta-secondary {
        display: none;
    }
}