:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --error-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.header {
    background-color: var(--bg-white);
    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: bold;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--primary-dark);
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    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, -7px);
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-menu.active {
    display: flex;
    transform: translateX(0);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.section-intro-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.philosophy {
    background-color: var(--bg-light);
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
}

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

.service-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-icon img {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.stats {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.process {
    background-color: var(--bg-light);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-medium);
}

.insights {
    background-color: var(--bg-white);
}

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

.insights-text p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.insights-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.insights-highlight blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.benefit-large {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.benefit-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-large p {
    color: var(--text-medium);
    line-height: 1.8;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--text-medium);
}

.faq {
    background-color: var(--bg-light);
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 1rem;
    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 1.25rem 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

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

.footer-section a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.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: 1001;
    padding: 20px;
}

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

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

.modal-content h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    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 {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

.page-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 0;
    text-align: center;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.story {
    padding: 60px 0;
}

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

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.story-image img {
    margin: 0 auto;
}

.mission {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.mission-box p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.value-icon img {
    width: 48px;
    height: 48px;
}

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

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.member-avatar img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
}

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

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    min-width: 80px;
}

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

.timeline-content p {
    color: var(--text-medium);
}

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

.approach-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.industry-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.industry-item p {
    color: var(--text-medium);
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

.service-icon-large img {
    width: 64px;
    height: 64px;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-body h4 {
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
}

.service-body p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-features li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-benefit {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.benefit-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.benefit-box img {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.benefit-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-box p {
    color: var(--text-medium);
}

.comparison-table {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: bold;
}

.comparison-cell {
    padding: 0.5rem 0;
}

.comparison-cell:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-medium);
}

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

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

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

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
}

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

.contact-description p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.contact-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-highlight h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-highlight p {
    color: var(--text-medium);
}

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

.direction-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

.direction-item p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.direction-item ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.direction-item li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.company-details p {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.reason-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.reason-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--text-medium);
}

.contact-cta {
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cta-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
}

.thank-you-hero {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 80px 0;
}

.thank-you-content {
    text-align: center;
}

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

.thank-you-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.step-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

.step-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-box p {
    color: var(--text-medium);
}

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

.waiting-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.waiting-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.waiting-item p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.reassurance-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.reassurance-box h2 {
    margin-bottom: 1rem;
}

.reassurance-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.cookie-table h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.cookie-notice {
    padding: 1rem;
    background-color: #fef3c7;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        transform: none;
        background-color: transparent;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero .container {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

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

    .hero-visual {
        flex: 1;
        margin-top: 0;
    }

    section h2 {
        font-size: 2.25rem;
    }

    .philosophy-values {
        flex-direction: row;
    }

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

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

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

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

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

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

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

    .insights-text {
        flex: 1.5;
    }

    .insights-highlight {
        flex: 1;
    }

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

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

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

    .benefit-large {
        flex: 1.5;
    }

    .benefit-items {
        flex: 1;
    }

    .cookie-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .cookie-buttons .btn {
        min-width: 150px;
    }

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

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

    .story-text {
        flex: 1.5;
    }

    .story-image {
        flex: 1;
    }

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

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

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

    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

    .benefit-box {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .comparison-cell {
        flex: 1;
        padding: 1rem;
    }

    .comparison-cell:first-child {
        margin-bottom: 0;
    }

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

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

    .contact-details {
        flex: 1;
    }

    .contact-description {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
    }

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

    .reason-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .waiting-content {
        flex-direction: row;
    }

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

    .footer-section {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .service-card {
        min-width: calc(25% - 1.5rem);
    }

    .stat-item {
        min-width: calc(25% - 1.5rem);
    }

    .step {
        min-width: calc(25% - 1.5rem);
    }

    .value-card {
        min-width: calc(25% - 1.5rem);
    }

    .benefit-box {
        min-width: calc(25% - 1.5rem);
    }

    .industry-item {
        min-width: calc(25% - 1.5rem);
    }

    .trust-item {
        min-width: calc(25% - 1.5rem);
    }

    .reason-card {
        min-width: calc(33.333% - 1.5rem);
    }
}