:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-primary-bg: #dbeafe;
    --color-primary-bg-light: #eff6ff;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #f1f5f9;
    --color-border: #e2e8f0;
    --font-sans: -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;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.container-narrow {
    max-width: 800px;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 18px;
}

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    transition: color var(--transition);
}

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

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

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

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

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

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

/* Page Hero */
.page-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--color-primary-bg-light) 0%, var(--color-bg) 100%);
    text-align: center;
}

.page-hero-small {
    padding: 40px 0 60px;
}

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

.page-intro {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

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

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 40px;
}

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

.philosophy-section .container {
    display: flex;
    gap: 60px;
}

.philosophy-content {
    flex: 1;
}

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

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

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

.value-card svg {
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* Stats Section */
.stats-section {
    background: var(--color-primary);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 250px;
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: left;
    transition: all var(--transition);
}

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

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
}

.services-cta {
    margin-top: 40px;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary-bg);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* Testimonials */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: left;
}

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

.quote-icon {
    margin-bottom: 16px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

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

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-info {
    font-size: 14px;
    color: var(--color-text-muted);
}

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.industry-item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.industry-item span {
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.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: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--color-text);
    gap: 16px;
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

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

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

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

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.insight-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.insight-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-light .cta-content h2 {
    color: var(--color-text);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 24px;
}

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

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

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

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

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

/* About Page - Story Section */
.story-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

.story-visual {
    flex: 1;
}

.story-illustration {
    width: 100%;
    max-width: 300px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.value-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    background: var(--color-bg-alt);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

.team-note {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 32px;
}

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

.milestones-timeline {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.milestone-content {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.milestone-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

/* Approach Section */
.approach-section .container {
    display: flex;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

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

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

.approach-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.approach-point span {
    font-weight: 500;
}

/* Certifications */
.certifications-section {
    background: var(--color-bg-alt);
    text-align: center;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: white;
    border-radius: var(--radius-md);
    min-width: 200px;
}

.certification-item span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Services Page */
.services-main {
    padding: 60px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--color-bg-alt);
}

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

.service-title-block {
    flex: 1;
}

.service-title-block h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.service-tagline {
    color: var(--color-text-light);
    font-size: 15px;
}

.service-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-unit {
    font-size: 14px;
    color: var(--color-text-muted);
}

.service-body {
    padding: 32px;
}

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

.service-body p:last-child {
    margin-bottom: 0;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    text-align: center;
    padding: 24px;
}

.benefit-item svg {
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* Comparison Table */
.comparison-section {
    text-align: center;
}

.comparison-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

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

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

.comparison-table th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

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

/* Contact Page */
.contact-main {
    padding: 60px 0;
}

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

.contact-info {
    flex: 2;
}

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: var(--color-text);
}

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

.location-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.location-address {
    margin-bottom: 8px;
}

.location-email {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.location-hours {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Company Info Section */
.company-info-section {
    background: var(--color-bg-alt);
}

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

.company-info-block {
    flex: 1;
}

.company-info-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.company-info-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

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

.company-details-list {
    list-style: none;
}

.company-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.company-details-list strong {
    color: var(--color-text);
}

/* Response Info */
.response-info {
    padding: 60px 0;
}

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

.response-block {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    text-align: center;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.response-block svg {
    margin-bottom: 20px;
}

.response-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.response-block p {
    color: var(--color-text-light);
}

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

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

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

.thank-you-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.thank-you-section p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.next-steps-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
    text-align: center;
}

.next-steps-section h2 {
    margin-bottom: 40px;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.next-step {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    max-width: 320px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
}

.next-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.next-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.next-step p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 80px;
}

.legal-article h2 {
    font-size: 24px;
    margin: 40px 0 16px;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 18px;
    margin: 24px 0 12px;
}

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

.legal-article ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-text-light);
}

.legal-article li {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}

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

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

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

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

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

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo svg circle,
.footer-brand .logo svg path {
    stroke: white;
    fill: none;
}

.footer-brand .logo svg path[fill="#2563eb"] {
    fill: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 8px;
}

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

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

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: var(--color-primary-light);
}

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

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

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

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

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.cookie-option input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option span {
    font-weight: 600;
    flex: 1;
}

.cookie-option small {
    width: 100%;
    padding-left: 32px;
    font-size: 14px;
    color: var(--color-text-light);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .hero {
        padding: 40px 0 60px;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 28px;
    }

    .philosophy-section .container,
    .story-section .container,
    .approach-section .container,
    .company-info-grid {
        flex-direction: column;
    }

    .stats-grid {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

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

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

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

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

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

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

    .milestone-year {
        width: auto;
    }

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

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

    .location-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 240px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .service-price {
        text-align: center;
    }

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

    .response-block {
        flex: 1 1 100%;
    }

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

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

    .thank-you-section h1 {
        font-size: 36px;
    }
}

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

    .page-hero h1 {
        font-size: 28px;
    }

    section h2 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .modal-actions {
        flex-direction: column;
    }

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

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