:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    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;
    font-size: 16px;
    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: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    list-style: none;
}

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

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

.page-hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 3.5rem 0;
}

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

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

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.philosophy-content > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
}

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

.philosophy-point {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.philosophy-point p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.stats-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

.process-step {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    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: 700;
    margin-bottom: 1rem;
}

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

.process-step p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

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

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

.testimonial-author strong {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

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

.industries-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.industry-item {
    background-color: var(--bg-white);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.industry-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

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

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
}

.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.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

.cta-content .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.story-section,
.approach-section {
    background-color: var(--bg-white);
}

.story-content,
.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.story-content p,
.approach-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content h3,
.approach-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.value-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.team-intro p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.team-feature {
    padding: 1.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.team-feature p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.commitment-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.commitment-content > p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-point {
    background-color: var(--bg-white);
    padding: 1.75rem;
    border-radius: 8px;
}

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

.commitment-point p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

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

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

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

.achievement-item {
    padding: 1.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.achievement-year {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.achievement-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.services-intro {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.services-list-section {
    background-color: var(--bg-white);
}

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

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

.service-detailed-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

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

.service-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background-color: var(--bg-white);
    padding: 1.75rem;
    border-radius: 8px;
}

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

.benefit-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.service-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro {
    background-color: var(--bg-white);
    padding: 3rem 0;
}

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

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

.contact-intro-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.contact-card > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
}

.contact-address {
    font-style: normal;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-hours p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.office-info h2 {
    margin-bottom: 2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.office-description h3,
.office-facilities h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.office-description h4,
.office-facilities h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.office-description p,
.office-facilities p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.company-details h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info-item {
    background-color: var(--bg-white);
    padding: 1.75rem;
    border-radius: 8px;
}

.company-info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.company-info-item p {
    color: var(--text-dark);
    margin-bottom: 0;
}

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

.contact-faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thank-you-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

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

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.next-steps-section {
    background-color: var(--bg-white);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.step-icon {
    width: 56px;
    height: 56px;
    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: 700;
    margin: 0 auto 1.25rem;
}

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

.step-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.while-you-wait {
    background-color: var(--bg-light);
}

.while-you-wait h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.wait-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.wait-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.wait-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.wait-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.legal-container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

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

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

.footer-section h3 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: var(--secondary-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.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 -4px 6px rgba(0, 0, 0, 0.1);
    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;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    gap: 1rem;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
}

.cookie-option-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

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

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

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

@media (min-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .cookie-buttons,
    .cookie-modal-buttons,
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .service-cards,
    .stats-grid,
    .industries-grid,
    .benefits-grid,
    .steps-grid,
    .wait-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card,
    .stat-item,
    .industry-item,
    .benefit-item,
    .step-card,
    .wait-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .company-info-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
    }

    .nav-menu li {
        margin: 0 0.25rem;
    }

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

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

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

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

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

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

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

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

    .commitment-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .office-details {
        flex-direction: row;
        gap: 3rem;
    }

    .office-description,
    .office-facilities {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

@media (min-width: 1024px) {
    .service-cards {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 25%;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

    .industries-grid {
        display: flex;
        flex-wrap: wrap;
    }

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

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

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

    .values-grid {
        display: flex;
        flex-wrap: wrap;
    }

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

    .achievements-grid {
        display: flex;
        flex-wrap: wrap;
    }

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

    .contact-grid {
        flex-wrap: nowrap;
    }

    .contact-card {
        flex: 1;
    }
}