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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #7cb8d1;
    --dark-color: #1a3a4a;
    --light-bg: #f8fafb;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #5a9e6f;
    --transition: all 0.3s ease;
}

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(--white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

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

.nav {
    padding: 1rem 0;
}

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

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

.logo:hover {
    color: var(--secondary-color);
}

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

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

.nav-links li {
    padding: 0;
}

.nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
}

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

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

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

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

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

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

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

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

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 1.875rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

section h3 {
    font-size: 1.375rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* Grid Layouts */
.overview-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.benefits-grid,
.industries-grid,
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Cards */
.overview-item,
.service-card,
.testimonial-card,
.benefit-item,
.industry-item,
.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.overview-item:hover,
.service-card:hover,
.benefit-item:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.overview-item h3,
.service-card h3,
.benefit-item h3,
.industry-item h3,
.value-card h3 {
    margin-bottom: 0.75rem;
}

.overview-item p,
.service-card p,
.benefit-item p,
.industry-item p,
.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Company Overview */
.company-overview {
    background-color: var(--light-bg);
}

/* Philosophy */
.philosophy {
    background-color: var(--white);
}

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

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Statistics */
.statistics {
    background-color: var(--primary-color);
    color: var(--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;
}

/* Featured Services */
.featured-services {
    background-color: var(--white);
}

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

/* Testimonials */
.testimonials {
    background-color: var(--light-bg);
}

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

.testimonial-card {
    background-color: var(--white);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

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

.testimonial-author strong {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Steps */
.process {
    background-color: var(--white);
}

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

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

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

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

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

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Industries Served */
.industries-served {
    background-color: var(--light-bg);
}

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

.industries-grid {
    margin-top: 2rem;
}

/* Insights */
.insights {
    background-color: var(--white);
}

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

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

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

.insight-item h3 {
    margin-bottom: 1rem;
}

.insight-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Values */
.values {
    background-color: var(--light-bg);
}

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

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq h2,
.faq-services h2,
.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-bg);
}

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

.faq-answer p {
    padding: 1.25rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* CTA Sections */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

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

.cta-simple {
    background-color: var(--light-bg);
    text-align: center;
}

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

.cta-simple p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 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;
    align-items: center;
}

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

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

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

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

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* About Page Specific */
.company-story,
.mission-vision,
.team-intro,
.credentials,
.principles,
.achievements,
.approach,
.commitment {
    background-color: var(--white);
}

.company-story:nth-child(even),
.team-intro:nth-child(even),
.principles:nth-child(even),
.approach:nth-child(even) {
    background-color: var(--light-bg);
}

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

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

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

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

.mission-item h2 {
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.member-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.credentials-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

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

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

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

.principle-icon {
    flex-shrink: 0;
}

.principle-icon img {
    width: 60px;
    height: 60px;
}

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

.principle-content p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.achievement-item h3 {
    margin-bottom: 1rem;
}

.achievement-item p {
    color: var(--text-color);
    line-height: 1.7;
}

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

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

.commitment-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.commitment-box h2 {
    margin-bottom: 1.5rem;
}

.commitment-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Page Specific */
.services-intro {
    background-color: var(--light-bg);
}

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

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

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

.services-list {
    background-color: var(--white);
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.service-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-title {
    flex-grow: 1;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

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

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-includes h3 {
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.process-overview {
    background-color: var(--white);
}

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

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

.flow-step {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.flow-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.flow-step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Contact Page Specific */
.contact-intro {
    background-color: var(--light-bg);
}

.contact-details {
    background-color: var(--white);
}

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

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

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

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

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

.direction-item h3 {
    margin-bottom: 1rem;
}

.direction-item p {
    line-height: 1.7;
    color: var(--text-color);
}

.company-info {
    background-color: var(--white);
}

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

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

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

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

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

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

/* Thank You Page */
.thank-you-hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

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

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

.thank-you-content h1 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--text-light);
}

.next-steps {
    background-color: var(--white);
}

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

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

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

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

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

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.meanwhile-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

.meanwhile-item p {
    line-height: 1.7;
}

.contact-reminder {
    background-color: var(--white);
}

.reminder-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.reminder-box h2 {
    margin-bottom: 1rem;
}

.reminder-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

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

.reassurance-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

.reassurance-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    background-color: var(--white);
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--dark-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--dark-color);
}

.cookie-table td {
    line-height: 1.6;
}

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

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

    section h2 {
        font-size: 2.25rem;
    }

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

    .nav-links li {
        padding: 0 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
    }

    .menu-toggle {
        display: none;
    }

    .overview-grid,
    .stats-grid,
    .benefits-grid,
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

    .mission-item {
        flex: 1;
    }

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

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

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

    .credential-item {
        flex: 1;
    }

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

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

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

    .contact-card {
        flex: 1;
    }

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

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

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

    .step-card {
        flex: 1;
    }

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

    .meanwhile-item {
        flex: 1;
    }

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

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

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

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

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

    .cookie-content p {
        flex: 1;
        margin-right: 2rem;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex: 1;
    }

    .hero-graphic {
        flex: 1;
    }

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

    section {
        padding: 5rem 0;
    }

    .overview-item,
    .benefit-item,
    .value-card {
        flex: 1 1 calc(33.333% - 1.334rem);
    }

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

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

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

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

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

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }
}