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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* 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 {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    color: #333;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

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

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

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

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

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

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background-color: #f8fafc;
    text-align: center;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

section h2 {
    font-size: 1.875rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 0.75rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Intro Section */
.intro-section {
    background-color: #f8fafc;
}

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

.intro-text h2 {
    text-align: left;
}

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

/* Stats Section */
.stats-section {
    background-color: #1e293b;
    color: #fff;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

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

/* Services Grid */
.services-highlight {
    background-color: #fff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 100%;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8fafc;
}

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

.philosophy-text h2 {
    text-align: left;
}

.philosophy-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

/* Process Section */
.process-section {
    background-color: #fff;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.process-step h3 {
    color: #1e293b;
}

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

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

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

.testimonial {
    flex: 1 1 100%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
}

/* Values Section */
.values-section {
    background-color: #fff;
}

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

.value-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.value-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    background-color: #f8fafc;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1 1 100%;
}

.industry-item h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: #64748b;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    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;
}

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

.faq-answer p {
    padding: 0 0 1.25rem 0;
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

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

/* Story Section */
.story-section {
    background-color: #fff;
}

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

.story-content h2 {
    text-align: left;
}

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

/* Mission Section */
.mission-section {
    background-color: #f8fafc;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.mission-item h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.team-member {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.team-member h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #64748b;
    line-height: 1.7;
}

/* Principles Section */
.principles-section {
    background-color: #f8fafc;
}

.principles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    flex: 1 1 100%;
}

.principle-item h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

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

/* Timeline */
.achievements-section {
    background-color: #fff;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 80px;
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    background-color: #f8fafc;
}

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

.trust-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 1.5rem;
}

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

.trust-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Coverage Section */
.coverage-section {
    background-color: #fff;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.coverage-item h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.coverage-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
    background-color: #f8fafc;
}

.commitment-text {
    max-width: 900px;
    margin: 2rem auto 0;
}

.commitment-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Services Catalog */
.services-intro {
    background-color: #f8fafc;
    padding: 2rem 0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
}

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

.services-catalog h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-detail {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

.service-detail-header h3 {
    color: #1e293b;
    margin-bottom: 0;
}

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

.service-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-features li {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8fafc;
}

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

.benefit-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

/* Comparison Section */
.comparison-section {
    background-color: #fff;
}

.comparison-text {
    max-width: 900px;
    margin: 2rem auto 0;
}

.comparison-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Process Service */
.process-service {
    background-color: #f8fafc;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.process-number {
    min-width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #64748b;
    line-height: 1.7;
}

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

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

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

.contact-info h2,
.contact-description h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.contact-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #94a3b8;
}

.contact-checklist {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.contact-checklist li {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Directions Section */
.directions-section {
    background-color: #f8fafc;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1 1 100%;
}

.direction-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.direction-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.directions-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

/* Company Info Section */
.company-info-section {
    background-color: #fff;
}

.company-details p {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

/* Additional Info Section */
.additional-info-section {
    background-color: #f8fafc;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.info-block h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.info-block p {
    color: #64748b;
    line-height: 1.7;
}

/* Thank You Section */
.thankyou-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    text-align: center;
}

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

.thankyou-text {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

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

/* Next Steps */
.next-steps {
    background-color: #fff;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    background-color: #fff;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-text h3 {
    text-align: left;
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #475569;
}

.legal-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-text ul li {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-date {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #94a3b8;
}

.cookies-table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.cookies-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table td {
    padding: 1rem;
    color: #475569;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1 1 100%;
}

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

.footer-col p {
    color: #94a3b8;
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: bottom 0.3s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

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

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

.modal-header h3 {
    margin: 0;
    color: #1e293b;
}

.modal-close {
    font-size: 1.5rem;
    color: #64748b;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1e293b;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.cookie-option p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 2rem;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        gap: 2rem;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

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

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

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

    .hero-content,
    .hero-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

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

    .info-block {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

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

    .philosophy-text,
    .philosophy-visual {
        flex: 1;
    }

    .contact-info,
    .contact-description {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

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

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

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

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

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

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