/* ================================
   CSS Reset & Base Styles
   ================================ */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a3d6e;
}

ul, ol {
    list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 600;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

/* ================================
   Container
   ================================ */

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a3d6e;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ================================
   Header & Navigation
   ================================ */

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 1rem 0;
}

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

@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.logo:hover {
    color: #2c5aa0;
}

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

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5aa0;
    transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #2c5aa0;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333333;
    position: relative;
    transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333333;
    transition: transform 0.2s ease;
}

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

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

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    gap: 0;
}

.nav-menu.active li {
    border-bottom: 1px solid #e8e8e8;
}

.nav-menu.active li:last-child {
    border-bottom: none;
}

.nav-menu.active a {
    display: block;
    padding: 1rem;
}

/* ================================
   Section Labels
   ================================ */

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2c5aa0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.125rem;
    color: #555555;
    max-width: 700px;
}

/* ================================
   Hero Section
   ================================ */

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
}

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

.hero-content h1 {
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

/* ================================
   Page Hero
   ================================ */

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
    text-align: center;
}

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

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

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
}

/* ================================
   Company Philosophy Section
   ================================ */

.company-philosophy {
    padding: 4rem 0;
    background-color: #ffffff;
}

.company-philosophy .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-content h2 {
    margin-bottom: 1.25rem;
}

.philosophy-content p {
    color: #555555;
    margin-bottom: 1rem;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.value-item h3 {
    font-size: 1.25rem;
}

.value-item p {
    color: #555555;
}

@media (min-width: 768px) {
    .company-philosophy {
        padding: 5rem 0;
    }

    .company-philosophy .container {
        flex-direction: row;
    }

    .philosophy-content {
        flex: 1;
    }

    .philosophy-values {
        flex: 1;
    }
}

/* ================================
   Statistics Section
   ================================ */

.statistics-section {
    padding: 4rem 0;
    background-color: #2c5aa0;
    color: #ffffff;
}

.stats-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-intro h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.stats-intro p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1 1 140px;
    max-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .statistics-section {
        padding: 5rem 0;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ================================
   Featured Services Section
   ================================ */

.featured-services {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.featured-services h2 {
    margin-bottom: 2rem;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card.featured {
    border-left: 4px solid #2c5aa0;
}

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #555555;
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 500;
    color: #2c5aa0;
}

.service-link:hover {
    text-decoration: underline;
}

.services-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .featured-services {
        padding: 5rem 0;
    }

    .services-showcase {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }
}

/* ================================
   Process Section
   ================================ */

.process-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.process-header {
    margin-bottom: 3rem;
}

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

.process-header p {
    color: #555555;
    max-width: 600px;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

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

.step-content p {
    color: #555555;
}

@media (min-width: 768px) {
    .process-section {
        padding: 5rem 0;
    }
}

/* Horizontal Process Steps */
.process-steps.horizontal {
    flex-direction: column;
    gap: 1.5rem;
}

.process-steps.horizontal .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.process-steps.horizontal .step-icon {
    flex-shrink: 0;
}

.process-connector {
    display: none;
}

@media (min-width: 900px) {
    .process-steps.horizontal {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .process-steps.horizontal .process-step {
        flex: 1;
    }

    .process-connector {
        display: flex;
        align-items: center;
        padding-top: 12px;
    }
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.testimonials-section h2 {
    margin-bottom: 2rem;
}

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

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

.testimonial-content {
    margin-bottom: 1.25rem;
}

.testimonial-content p {
    color: #333333;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
}

.author-location {
    font-size: 0.875rem;
    color: #666666;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }

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

    .testimonial-card {
        flex: 1;
    }
}

/* ================================
   Industries Section
   ================================ */

.industries-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.industries-section h2 {
    margin-bottom: 1rem;
}

.industries-section .section-intro {
    margin-bottom: 2rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f8fafc;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

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

.industry-item span {
    font-weight: 500;
    color: #333333;
}

@media (min-width: 768px) {
    .industries-section {
        padding: 5rem 0;
    }

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

/* ================================
   Insights Section
   ================================ */

.insights-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.insights-section h2 {
    margin-bottom: 2rem;
}

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

.insight-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.insight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.insight-card p {
    color: #555555;
}

@media (min-width: 768px) {
    .insights-section {
        padding: 5rem 0;
    }

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

    .insight-card {
        flex: 1;
    }
}

/* ================================
   FAQ Section
   ================================ */

.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

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

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.faq-question:hover {
    color: #2c5aa0;
}

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

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #555555;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }
}

/* ================================
   Trust Section
   ================================ */

.trust-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

.trust-content p {
    color: #555555;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.trust-badge span {
    font-weight: 500;
    color: #333333;
}

@media (min-width: 768px) {
    .trust-section {
        padding: 5rem 0;
    }

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

    .trust-content {
        flex: 1;
    }

    .trust-badges {
        flex: 1;
        justify-content: flex-end;
    }
}

/* ================================
   CTA Section
   ================================ */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6e 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-section .btn-primary {
    background-color: #ffd700;
    color: #1a1a1a;
}

.cta-section .btn-primary:hover {
    background-color: #e6c200;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

/* ================================
   Footer
   ================================ */

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: #ffd700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: #ffd700;
}

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

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

@media (min-width: 768px) {
    .site-footer {
        padding: 4rem 0 2rem;
    }

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

/* ================================
   Cookie Banner
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }
}

/* ================================
   Cookie Modal
   ================================ */

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

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

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

.modal-content > p {
    color: #555555;
    margin-bottom: 1.5rem;
}

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

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2c5aa0;
}

.cookie-name {
    font-weight: 500;
    color: #1a1a1a;
}

.cookie-option p {
    color: #666666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding-left: 1.875rem;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ================================
   About Page Styles
   ================================ */

.story-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.story-text p {
    color: #555555;
    margin-bottom: 1rem;
}

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

.story-illustration {
    max-width: 300px;
}

@media (min-width: 768px) {
    .story-section {
        padding: 5rem 0;
    }

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

    .story-content {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background-color: #2c5aa0;
}

.mission-card {
    text-align: center;
    color: #ffffff;
}

.mission-card h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mission-section {
        padding: 5rem 0;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.team-section h2 {
    margin-bottom: 2rem;
}

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

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #555555;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .team-section {
        padding: 5rem 0;
    }
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.values-section h2 {
    margin-bottom: 2rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #555555;
}

@media (min-width: 768px) {
    .values-section {
        padding: 5rem 0;
    }

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

/* Milestones Section */
.milestones-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.milestones-section h2 {
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
}

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

.timeline-item {
    padding-left: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #2c5aa0;
    border: 3px solid #ffffff;
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555555;
}

@media (min-width: 768px) {
    .milestones-section {
        padding: 5rem 0;
    }

    .timeline {
        padding-left: 1rem;
    }
}

/* Approach Section */
.approach-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.approach-content {
    margin-bottom: 2rem;
}

.approach-content h2 {
    margin-bottom: 1.25rem;
}

.approach-content p {
    color: #555555;
    margin-bottom: 1rem;
}

.approach-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #555555;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .approach-section {
        padding: 5rem 0;
    }
}

/* ================================
   Services Page Styles
   ================================ */

.services-intro {
    padding: 3rem 0;
    background-color: #ffffff;
}

.intro-content p {
    color: #555555;
    margin-bottom: 1rem;
    max-width: 800px;
}

.services-list {
    padding: 2rem 0 4rem;
    background-color: #f8fafc;
}

.services-list h2 {
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-detail-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
}

.service-icon-large {
    flex-shrink: 0;
}

.service-title h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-body {
    padding: 1.5rem;
}

.service-body p {
    color: #555555;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555555;
    border-bottom: 1px solid #f0f0f0;
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background-color: #2c5aa0;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .services-list {
        padding: 3rem 0 5rem;
    }
}

/* Service Benefits */
.service-benefits {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-benefits h2 {
    margin-bottom: 2rem;
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #555555;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .service-benefits {
        padding: 5rem 0;
    }
}

/* Service Comparison */
.service-comparison {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.service-comparison h2 {
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    min-width: 600px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.comparison-header {
    display: flex;
    background-color: #f8fafc;
    border-bottom: 2px solid #e8e8e8;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.header-label {
    flex: 1.5;
}

.comparison-cell.row-label {
    flex: 1.5;
    text-align: left;
    font-weight: 500;
    color: #333333;
}

.header-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.header-item.featured {
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 8px 8px 0 0;
}

.header-item.featured h3 {
    color: #ffffff;
}

.featured-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5aa0;
}

.header-item.featured .package-price {
    color: #ffd700;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

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

.comparison-row .comparison-cell {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #555555;
}

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

@media (min-width: 768px) {
    .service-comparison {
        padding: 5rem 0;
    }
}

/* ================================
   Contact Page Styles
   ================================ */

.contact-details {
    padding: 3rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

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

.contact-card address {
    font-style: normal;
    color: #555555;
    line-height: 1.8;
}

.contact-email a {
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-note {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.75rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    color: #555555;
}

.hours-list li:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .contact-details {
        padding: 4rem 0;
    }
}

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.company-info-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.company-info-content p {
    color: #555555;
    margin-bottom: 1rem;
}

.company-info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

.info-list li {
    padding: 0.5rem 0;
    color: #555555;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-list strong {
    color: #333333;
}

@media (min-width: 768px) {
    .company-info-section {
        padding: 5rem 0;
    }

    .company-info-section .container {
        flex-direction: row;
    }

    .company-info-content {
        flex: 1;
    }

    .company-info-details {
        flex: 1;
    }
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.directions-section h2 {
    margin-bottom: 2rem;
}

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

.directions-text h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.directions-text h3:first-child {
    margin-top: 0;
}

.directions-text p {
    color: #555555;
}

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

.map-illustration {
    max-width: 400px;
    width: 100%;
}

@media (min-width: 768px) {
    .directions-section {
        padding: 5rem 0;
    }

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

    .directions-text {
        flex: 1;
    }

    .directions-visual {
        flex: 1;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.appointment-content {
    max-width: 800px;
}

.appointment-content h2 {
    margin-bottom: 1.25rem;
}

.appointment-content p {
    color: #555555;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .appointment-section {
        padding: 5rem 0;
    }
}

/* Alternative Contact */
.alternative-contact {
    padding: 3rem 0;
    background-color: #ffffff;
    text-align: center;
}

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

.alternative-content p {
    color: #555555;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.alternative-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ================================
   Thank You Page Styles
   ================================ */

.thank-you-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    margin-bottom: 1.25rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 3rem;
}

.what-happens-next {
    text-align: left;
    margin-bottom: 2rem;
}

.what-happens-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.next-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.next-step h3 {
    font-size: 1.125rem;
}

.next-step p {
    color: #555555;
}

.thank-you-note {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thank-you-note p {
    color: #555555;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .thank-you-section {
        padding: 5rem 0;
    }

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

    .next-step {
        flex: 1;
    }
}

/* Helpful Resources */
.helpful-resources {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.helpful-resources h2 {
    margin-bottom: 0.75rem;
}

.helpful-resources > .container > p {
    color: #555555;
    margin-bottom: 2rem;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.resource-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.resource-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #555555;
    margin-bottom: 1rem;
}

.resource-link {
    font-weight: 500;
}

@media (min-width: 768px) {
    .helpful-resources {
        padding: 5rem 0;
    }
}

/* ================================
   Legal Pages Styles
   ================================ */

.legal-content {
    padding: 3rem 0 4rem;
    background-color: #ffffff;
}

.legal-text {
    max-width: 800px;
}

.last-updated {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-text h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.legal-text p {
    color: #555555;
    margin-bottom: 1rem;
}

.legal-text ul, .legal-text ol {
    color: #555555;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.legal-text a {
    color: #2c5aa0;
}

.legal-text a:hover {
    text-decoration: underline;
}

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

.contact-list li {
    padding: 0.5rem 0;
}

/* GDPR Specific */
.gdpr-basis {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.gdpr-basis h3 {
    margin-top: 0;
}

.gdpr-basis p {
    margin-bottom: 0;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.right-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 250px;
    background-color: #f8fafc;
    padding: 1.25rem;
    border-radius: 8px;
}

.right-item h3 {
    margin-top: 0;
    font-size: 1rem;
}

.right-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Cookies Policy Specific */
.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category h3 {
    margin-bottom: 0.75rem;
}

.cookie-category > p {
    margin-bottom: 1rem;
}

.cookie-table {
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cookie-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

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

.cookie-row span {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.cookie-row.header {
    background-color: #2c5aa0;
}

.cookie-row.header span {
    color: #ffffff;
    font-weight: 500;
}

@media (min-width: 768px) {
    .legal-content {
        padding: 4rem 0 5rem;
    }
}

/* ================================
   Utility Classes
   ================================ */

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
