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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6fa8;
    --accent-color: #4a90d9;
    --dark-color: #0f2438;
    --light-color: #f8f9fa;
    --gray-100: #f7f8f9;
    --gray-200: #e8eaed;
    --gray-300: #d1d5da;
    --gray-600: #5f6368;
    --gray-800: #2c3e50;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

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: 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(--accent-color);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-visual {
        flex: 1;
    }

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 12px 20px;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--accent-color);
}

/* Sections */
section {
    padding: var(--spacing-xxl) 0;
}

section:nth-child(even) {
    background-color: var(--gray-100);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.section-intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

/* Overview Grid */
.overview-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.overview-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.overview-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.overview-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .overview-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .overview-card {
        flex: 1;
        min-width: 280px;
    }
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

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

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Philosophy Section */
.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.philosophy-visual {
    flex: 1;
    max-width: 500px;
}

@media (min-width: 768px) {
    .philosophy-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-md);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

@media (min-width: 1024px) {
    .service-card {
        min-width: calc(33.333% - var(--spacing-lg));
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    margin-bottom: var(--spacing-lg);
}

.testimonial-text p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* Industries */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-item img {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.industry-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .industries-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 1;
        min-width: calc(33.333% - var(--spacing-lg));
    }
}

/* Knowledge Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.knowledge-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-color);
}

.knowledge-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .knowledge-grid {
        flex-direction: row;
    }

    .knowledge-card {
        flex: 1;
    }
}

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

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
}

.trust-item img {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.trust-item p {
    font-weight: 500;
    color: var(--text-color);
}

@media (min-width: 768px) {
    .trust-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .trust-item {
        flex: 1;
    }
}

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

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

.cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--gray-200);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--gray-200);
    transition: var(--transition);
}

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

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.story-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.story-visual {
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .story-text {
        flex: 1.5;
    }

    .story-visual {
        flex: 1;
    }
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

@media (min-width: 1024px) {
    .value-card {
        min-width: calc(33.333% - var(--spacing-lg));
    }
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.team-member {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-lg);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: var(--spacing-sm);
}

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

/* Philosophy Blocks */
.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.philosophy-block {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.philosophy-block h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.philosophy-block p {
    line-height: 1.8;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .philosophy-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-block {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.achievement-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

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

@media (min-width: 768px) {
    .achievements-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-item {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

/* Approach Content */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.approach-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.approach-item h3 {
    margin-bottom: var(--spacing-md);
}

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

@media (min-width: 768px) {
    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Service Detail Pages */
.service-detail {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-xl);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-200);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
}

.service-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-detail-title h2 {
    margin-bottom: var(--spacing-sm);
}

.service-detail-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    font-weight: 700;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-value {
    font-size: 2rem;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

@media (min-width: 768px) {
    .service-detail-header {
        flex-direction: row;
        align-items: flex-start;
    }

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

.service-detail-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.service-detail-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-features li {
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.8;
}

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

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
}

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

.comparison-header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: var(--spacing-sm);
}

.comparison-row:nth-child(even) {
    background: var(--gray-100);
}

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
        align-items: center;
    }
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info {
    flex: 1;
}

.contact-about {
    flex: 1;
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-details h3 {
    margin-bottom: var(--spacing-sm);
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.contact-address {
    font-style: normal;
    line-height: 1.8;
}

.opening-hours {
    list-style: none;
    line-height: 2;
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
    position: relative;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list li strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.process-list li p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background: var(--gray-100);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-top: var(--spacing-lg);
}

.contact-note h3 {
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.direction-method {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.direction-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.direction-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.direction-method h3 {
    margin-bottom: var(--spacing-md);
}

.direction-method p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

.direction-method ul {
    list-style: none;
    padding-left: var(--spacing-md);
}

.direction-method ul li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.direction-method ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (min-width: 768px) {
    .directions-grid {
        flex-direction: row;
    }

    .direction-method {
        flex: 1;
    }
}

/* Company Info */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-block {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-block h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1;
        min-width: calc(50% - var(--spacing-lg));
    }
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.thank-you-content p {
    opacity: 0.95;
    line-height: 1.8;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-card h3 {
    margin-bottom: var(--spacing-md);
}

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

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.resource-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    margin-bottom: var(--spacing-md);
}

.resource-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
}

@media (min-width: 768px) {
    .resource-cards {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

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

.reassurance-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--accent-color);
}

/* Legal Pages */
.legal-hero {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.legal-intro {
    font-size: 1.125rem;
    opacity: 0.9;
}

.legal-content {
    padding: var(--spacing-xxl) 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.legal-text h4 {
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.legal-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-color);
}

.legal-text ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: var(--spacing-xs);
}

.cookie-table {
    background: var(--gray-100);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.cookie-table h4 {
    margin-bottom: var(--spacing-sm);
}

.cookie-table p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.cookie-content p {
    flex: 1;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .cookie-content p {
        text-align: left;
    }

    .cookie-actions {
        flex-wrap: nowrap;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--spacing-md);
}

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

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    margin-bottom: var(--spacing-lg);
}

.cookie-option {
    margin-bottom: var(--spacing-lg);
}

.cookie-option label {
    display: flex;
    gap: var(--spacing-md);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.cookie-option strong {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.cookie-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-modal-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: var(--spacing-lg);
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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