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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

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

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

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

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

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

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

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

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

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

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

.btn-primary:hover {
    background-color: #1e40af;
    color: #fff;
}

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

/* Benefits Grid */
.benefits-section {
    background-color: #fff;
}

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

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

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

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

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

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

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

.process-step {
    padding: 2rem;
    border-left: 4px solid #2563eb;
    background-color: #f9fafb;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

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

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

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

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

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

.industry-item {
    padding: 1.5rem;
    border-left: 3px solid #2563eb;
}

.industry-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.industry-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Insights Section */
.insights-section {
    background-color: #f3f4f6;
}

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-box {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

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

.insight-box p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    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;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
}

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

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

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

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: #2563eb;
    background-color: #eff6ff;
}

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

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

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

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
}

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

.comparison-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Benefits List Section */
.benefits-list-section {
    background-color: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.benefit-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

.benefit-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Process Simple Section */
.process-simple-section {
    background-color: #f9fafb;
}

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

.process-simple-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

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

.process-simple-step h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.process-simple-step p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #f9fafb;
}

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

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

.contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

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

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About Location Section */
.about-location-section {
    background-color: #fff;
}

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

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

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

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.direction-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
}

.direction-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: #4b5563;
    margin-bottom: 0;
}

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

.company-details {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 4px;
}

.company-detail-item strong {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.company-detail-item span {
    color: #1f2937;
}

/* Visit Info Section */
.visit-info-section {
    background-color: #f9fafb;
}

.visit-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.visit-info-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
}

.visit-info-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.visit-info-item p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thank-you-info {
    padding: 2rem;
    background-color: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thank-you-info p {
    color: #374151;
    margin-bottom: 0;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

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

.step-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

.step-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

.story-content h2 {
    margin-bottom: 2rem;
}

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

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

.value-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

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

.value-card p {
    color: #4b5563;
    margin-bottom: 0;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

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

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

.team-member p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    background-color: #f3f4f6;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-block {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.approach-block h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.approach-block p {
    color: #4b5563;
    margin-bottom: 0;
}

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

.achievements-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.achievement-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.achievement-desc h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.achievement-desc p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f9fafb;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.reason-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
}

.reason-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.reason-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    background-color: #fff;
    padding: 4rem 0;
}

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

.legal-content h1 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

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

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

.legal-section h2 {
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

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

.legal-section p {
    color: #4b5563;
    line-height: 1.7;
}

.legal-section strong {
    color: #1f2937;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

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

.legal-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

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

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

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

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

.authority-info {
    padding: 1.5rem;
    background-color: #f3f4f6;
    border-radius: 6px;
    margin-top: 1rem;
}

.authority-info p {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-column p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column ul li a {
    color: #d1d5db;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

/* 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: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

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

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

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

.cookie-option p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
    padding-left: 2rem;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0;
    }

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

    .menu-toggle {
        display: none;
    }

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .stat-item {
        flex: 0 0 50%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .footer-column {
        flex: 0 0 30%;
    }

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

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .benefit-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .stat-item {
        flex: 0 0 25%;
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .contact-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .direction-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .step-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .process-simple-grid {
        flex-direction: row;
    }

    .process-simple-step {
        flex: 1;
    }
}

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