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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #1565C0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0D47A1;
}

ul {
    list-style-position: inside;
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    flex-wrap: wrap;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1565C0;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1565C0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1565C0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        padding-top: 1rem;
    }

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

    .nav-link {
        padding: 0.75rem 0;
    }
}

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

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background-color: #f5f5f5;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.page-intro {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1565C0;
    color: #fff;
    border-color: #1565C0;
}

.btn-primary:hover {
    background-color: #0D47A1;
    border-color: #0D47A1;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #1565C0;
    border-color: #1565C0;
}

.btn-secondary:hover {
    background-color: #1565C0;
    color: #fff;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1565C0;
}

.section-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

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

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #1565C0;
}

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

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

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #1565C0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #1565C0;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
}

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

.stat-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
}

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

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

/* Knowledge Grid */
.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.knowledge-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.knowledge-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.knowledge-item p {
    color: #666;
    line-height: 1.7;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1565C0;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #f5f5f5;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Mission Box */
.mission-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #fff;
    border-radius: 8px;
}

.mission-box h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.principle-item {
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #1565C0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.principle-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.principle-item p {
    color: #666;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1565C0;
}

.team-role {
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Achievements */
.achievements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.achievement-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.achievement-block p {
    color: #666;
    line-height: 1.7;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.industry-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1565C0;
}

.industry-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Services Catalog */
.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f5f5f5;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #1565C0;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1565C0;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.service-body h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1565C0;
    font-weight: 700;
}

/* Pricing Info */
.pricing-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.comparison-card.highlight {
    border-color: #1565C0;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.15);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1565C0;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #666;
}

.comparison-pro::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: 700;
}

.comparison-con::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #C62828;
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1 1 500px;
}

.contact-additional {
    flex: 1 1 400px;
}

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

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1565C0;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.info-box {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.info-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #666;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1565C0;
    font-weight: 700;
}

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

.direction-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.transport-list {
    list-style: none;
    padding: 0;
}

.transport-list li {
    padding: 0.75rem 0;
    color: #666;
    line-height: 1.7;
}

/* Company Info */
.company-details {
    max-width: 900px;
    margin: 0 auto;
}

.company-details p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.company-data {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.data-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.data-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.data-item p {
    color: #333;
    font-weight: 600;
}

/* Trust Indicators */
.trust-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

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

.trust-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.trust-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Thank You Page */
.thankyou-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1565C0;
}

.thankyou-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

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

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

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

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1565C0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.useful-info {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.legal-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-date {
    color: #888;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1565C0;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.legal-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #666;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-entry {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.cookie-entry h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1565C0;
}

.cookie-entry p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

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

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

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

.footer-bottom p {
    color: #B0BEC5;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263238;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    color: #B0BEC5;
    line-height: 1.6;
}

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

/* Cookie Modal */
.cookie-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;
}

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

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

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1565C0;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

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

.cookie-option p {
    margin: 0.5rem 0 0 2.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .value-card,
    .knowledge-item,
    .team-member,
    .industry-item {
        flex: 1 1 100%;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

    .benefit-item,
    .achievement-block,
    .comparison-card {
        flex: 1 1 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }
}