/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #93c5fd;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-purple: #8b5cf6;
    --color-pink: #ec4899;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #f1f5f9;
    --color-border: #e5e7eb;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 2px 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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

ul {
    list-style: none;
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

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

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 400px;
    width: 100%;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--color-bg-alt);
}

.philosophy-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.philosophy-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.philosophy-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background-color: var(--color-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 16px 0 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Services Preview */
.services-cards {
    display: flex;
    gap: 24px;
}

.service-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.service-card.highlighted {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, var(--color-bg) 100%);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link::after {
    content: '→';
}

/* Process Section */
.process-section {
    background-color: var(--color-bg);
}

.process-steps {
    display: flex;
    gap: 32px;
}

.process-step {
    flex: 1;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--color-bg-alt);
}

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Categories Section */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.category-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 16px 0 8px;
}

.category-count {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Insights Section */
.insights-section {
    background-color: var(--color-bg-alt);
}

.insights-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insights-content {
    flex: 1;
}

.insights-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.insight-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

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

.insight-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.insight-item p {
    color: var(--color-text-light);
}

.insights-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.insights-visual svg {
    max-width: 300px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-bg);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--color-bg);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-bg);
    color: var(--color-primary);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-bg);
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: var(--color-bg);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Story Section */
.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-visual svg {
    max-width: 400px;
    width: 100%;
}

/* Values Section */
.values-section {
    background-color: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.member-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Milestones */
.milestones-section {
    background-color: var(--color-bg-alt);
}

.milestones-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.milestone-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.milestone-content {
    flex: 1;
    padding-bottom: 32px;
    border-left: 2px solid var(--color-border);
    padding-left: 32px;
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.milestone-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.milestone-content p {
    color: var(--color-text-light);
}

/* Approach Section */
.approach-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.approach-visual svg {
    max-width: 350px;
    width: 100%;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.approach-list svg {
    flex-shrink: 0;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-bg);
}

.stats-grid {
    display: flex;
    gap: 24px;
}

.stat-card {
    flex: 1;
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-icon {
    margin-bottom: 16px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Services Detailed */
.services-overview {
    padding: 40px 0;
    background-color: var(--color-bg);
}

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

.services-intro p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.services-detailed {
    background-color: var(--color-bg-alt);
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
}

.service-feature span {
    font-size: 0.9375rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.price-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

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

/* Comparison Table */
.comparison-section {
    background-color: var(--color-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-price-row td {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.comparison-price-row td:first-child {
    color: var(--color-text);
}

/* Contact Page */
.contact-main {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.contact-link {
    font-weight: 500;
    font-size: 1.0625rem;
}

.contact-address {
    font-style: normal;
    line-height: 1.7;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

.contact-details {
    flex: 1.5;
}

.company-info-block {
    margin-bottom: 40px;
}

.company-info-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.company-info-block > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.company-details {
    margin-top: 24px;
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.company-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.company-details p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.directions-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.direction-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.direction-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.direction-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.direction-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Response Info */
.response-info {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.response-grid {
    display: flex;
    gap: 32px;
}

.response-card {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
}

.response-card svg {
    margin-bottom: 16px;
}

.response-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.response-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: var(--color-bg);
}

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

.trust-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.trust-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

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

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.thank-you-details {
    text-align: left;
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.thank-you-details h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--color-bg);
    color: var(--color-primary);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 1px solid var(--color-primary);
    transition: background-color 0.2s ease;
}

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

/* Suggestions Section */
.suggestions-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.suggestions-grid {
    display: flex;
    gap: 24px;
}

.suggestion-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.suggestion-icon {
    margin-bottom: 16px;
}

.suggestion-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.suggestion-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.legal-wrapper {
    display: flex;
    gap: 60px;
}

.legal-sidebar {
    flex-shrink: 0;
    width: 240px;
}

.legal-nav {
    position: sticky;
    top: 100px;
}

.legal-nav h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-nav a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.legal-nav a:hover {
    color: var(--color-primary);
}

.legal-main {
    flex: 1;
    max-width: 800px;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.legal-main article {
    margin-bottom: 40px;
}

.legal-main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 16px;
}

.legal-main h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

.legal-main p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-main ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-main li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    position: relative;
}

.legal-main li::before {
    content: '•';
    position: absolute;
    left: -16px;
    color: var(--color-primary);
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    font-size: 0.875rem;
}

.cookie-table td {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.cookie-btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.cookie-btn-secondary:hover {
    background-color: var(--color-bg-alt);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-text-light);
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.cookie-option p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cookie-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
}

.cookie-modal-footer .cookie-btn {
    flex: 1;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .philosophy-grid,
    .story-grid,
    .insights-wrapper,
    .approach-grid {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .stat-card {
        flex: 1 1 calc(50% - 12px);
    }

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

    .response-grid {
        flex-direction: column;
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .trust-item {
        flex: 1 1 calc(50% - 16px);
    }

    .suggestions-grid {
        flex-direction: column;
    }

    .legal-wrapper {
        flex-direction: column;
    }

    .legal-sidebar {
        width: 100%;
    }

    .legal-nav {
        position: static;
    }

    .service-detail-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .categories-grid {
        flex-direction: column;
    }

    .category-item {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .milestone {
        flex-direction: column;
        gap: 16px;
    }

    .milestone-content {
        border-left: none;
        padding-left: 0;
    }

    .milestone-content::before {
        display: none;
    }

    .service-features {
        flex-direction: column;
    }

    .service-feature {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-card {
        flex: 1 1 100%;
    }

    .trust-item {
        flex: 1 1 100%;
    }
}
