/* 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: #fff;
}

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 */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-nav ul.active {
    display: flex;
}

.main-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.main-nav a {
    display: block;
    padding: 1rem 20px;
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    background-color: #f8f9fa;
    color: #2563eb;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 4rem 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-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.btn-primary {
    background-color: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

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

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

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Featured Services */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-highlight {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-highlight img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.service-highlight h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

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

/* Company Story */
.company-story {
    background-color: #f9fafb;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

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

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

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

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #667eea;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Knowledge Section */
.knowledge-section {
    background-color: #f9fafb;
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.knowledge-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

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

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

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

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

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

.faq-icon {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #667eea;
    transition: transform 0.3s ease;
}

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

.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 1.25rem 1.25rem;
    color: #6b7280;
    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 {
    padding: 4rem 0;
}

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

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline Section */
.milestones-section {
    background-color: #f9fafb;
}

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

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

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

.timeline-item:before {
    content: "";
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #667eea;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

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

/* Approach Section */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.industry-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-list {
    list-style: none;
    margin: 2rem 0;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

/* Services Page */
.services-intro {
    text-align: center;
    padding: 2rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6b7280;
}

.services-list {
    padding: 2rem 0;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header img {
    width: 80px;
    height: 80px;
}

.service-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
}

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

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #6b7280;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Service Benefits */
.service-benefits {
    background-color: #f9fafb;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

/* Process Section (Services Page) */
.process-content {
    max-width: 900px;
    margin: 0 auto;
}

.process-content .process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.step-text h3 {
    margin-bottom: 0.5rem;
}

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

.comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.comparison-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

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

.comparison-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.contact-card a {
    color: #667eea;
    font-weight: 600;
}

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

/* About Location */
.about-location {
    background-color: #f9fafb;
}

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

.location-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

.direction-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.direction-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.direction-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

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

.company-details p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
}

/* What to Expect */
.what-to-expect {
    background-color: #f9fafb;
}

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

.expect-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.expect-step .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.expect-step .step-text h3 {
    margin-bottom: 0.5rem;
}

/* Additional Info */
.additional-content {
    max-width: 900px;
    margin: 0 auto;
}

.additional-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.thank-you-image {
    width: 200px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.step-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-card .step-icon {
    margin-bottom: 1.5rem;
}

.step-card .step-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.step-card h3 {
    margin-bottom: 1rem;
}

/* Explore Section */
.explore-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.explore-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.explore-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.explore-card p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.explore-card a {
    color: #667eea;
    font-weight: 600;
}

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

.legal-updated {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #1f2937;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-column a {
    color: #d1d5db;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px 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;
    flex-direction: column;
    gap: 1rem;
}

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

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-buttons .btn {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.modal-buttons .btn {
    width: 100%;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .main-nav {
        position: static;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        background: none;
    }

    .main-nav li {
        border-bottom: none;
    }

    .main-nav a {
        padding: 0.5rem 1rem;
    }

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

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .story-layout {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .story-text {
        flex: 2;
    }

    .story-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .contact-card {
        flex: 1;
    }

    .location-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .location-text {
        flex: 2;
    }

    .location-visual {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .step-card {
        flex: 1;
    }

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

    .explore-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .cookie-buttons .btn {
        width: auto;
    }

    .modal-buttons {
        flex-direction: row;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .thank-you-actions .btn {
        width: auto;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .service-title h2,
    .service-price {
        text-align: left;
    }

    .service-header img {
        margin: 0;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .service-highlight {
        flex: 1;
    }

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

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

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

    .benefits-layout {
        flex-direction: row;
    }

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

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

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

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

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