/* 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: #1f2937;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px 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;
}

.logo:hover {
    color: #1d4ed8;
}

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

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

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

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

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

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

.btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.section-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Grid Layouts */
.services-grid,
.philosophy-grid,
.benefits-grid,
.testimonials-grid,
.industries-grid,
.insights-grid,
.stats-grid,
.team-grid,
.achievements-grid,
.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card,
.philosophy-item,
.benefit-item,
.testimonial-card,
.industry-item,
.insight-card,
.team-member,
.achievement-card,
.guarantee-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

/* Service Cards */
.service-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card p {
    color: #4b5563;
}

/* Philosophy Items */
.philosophy-icon {
    margin-bottom: 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.philosophy-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background-color: #f3f4f6;
}

.stats-grid {
    justify-content: center;
}

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

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

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e7eb;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

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

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

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    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: #1f2937;
}

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

/* Industries Grid */
.industry-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

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

.industry-item p {
    color: #6b7280;
    font-size: 0.9375rem;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.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: 1000px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Insights Section */
.insight-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

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

.insight-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* About Page Styles */
.story-section,
.mission-section,
.values-section,
.team-section,
.milestones-section,
.achievements-section,
.approach-section {
    padding: 4rem 0;
}

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

.mission-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.mission-item h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.mission-item p {
    color: #4b5563;
    line-height: 1.8;
}

/* Values List */
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.value-icon {
    margin-bottom: 1.5rem;
}

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

.value-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Team Grid */
.team-member {
    text-align: center;
    flex: 1 1 calc(50% - 1rem);
    min-width: 260px;
}

.member-placeholder {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
}

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

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Achievements Grid */
.achievements-grid {
    gap: 1.5rem;
}

.achievement-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 260px;
}

.achievement-card h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.achievement-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Approach Content */
.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.approach-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Page */
.services-intro,
.services-main {
    padding: 3rem 0;
}

.service-detailed {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-detailed.featured-service {
    border-color: #2563eb;
    border-width: 2px;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

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

.service-body {
    padding: 2rem;
}

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

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

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Service Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.comparison-item h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

.comparison-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.comparison-list.negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-list.positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Guarantee Grid */
.guarantee-grid {
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

.guarantee-item svg {
    margin: 0 auto 1.5rem;
}

.guarantee-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.guarantee-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Page */
.contact-main {
    padding: 3rem 0;
}

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

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

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

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

.contact-list li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.info-box {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.info-box h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.info-box p {
    color: #4b5563;
    line-height: 1.7;
}

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

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

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

.direction-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.direction-item p {
    color: #4b5563;
    line-height: 1.7;
}

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

.company-details p {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
}

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

.thank-you-icon {
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

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

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

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

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

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

.step-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-text p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.helpful-info {
    margin: 3rem 0;
}

.helpful-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.info-link-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-link-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.info-link-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

.contact-reminder {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

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

.legal-intro {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

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

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

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #2563eb;
}

.legal-section h4 {
    font-size: 1.0625rem;
    margin: 1.25rem 0 0.75rem;
    color: #1f2937;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4b5563;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-note {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: #f3f4f6;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    font-weight: 600;
    color: #1f2937;
}

.cookies-table td {
    color: #4b5563;
}

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

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

.footer-column {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
}

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

.footer-column p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    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 300px;
    margin: 0;
    color: #e5e7eb;
}

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

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

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

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

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

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

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

.cookie-option p {
    margin-left: 1.75rem;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.9375rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

    .hero-text {
        font-size: 1.125rem;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

    .service-card,
    .philosophy-item,
    .benefit-item,
    .testimonial-card,
    .industry-item,
    .insight-card,
    .team-member,
    .achievement-card,
    .guarantee-item {
        flex: 1 1 100%;
    }

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

    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-item,
    .value-item,
    .approach-item,
    .contact-info,
    .contact-description,
    .direction-item,
    .comparison-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .info-links {
        flex-direction: column;
    }

    .info-link-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 1 1 100%;
    }

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