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

:root {
    --color-primary: #e94560;
    --color-secondary: #1a1a2e;
    --color-light: #fff0f3;
    --color-white: #ffffff;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #f0f0f0;
    --color-gray-200: #e0e0e0;
    --color-gray-400: #999999;
    --color-gray-600: #666666;
    --color-gray-800: #333333;
    --color-text: #1a1a2e;
    --color-text-light: #666666;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
    --transition: 0.3s ease;
}

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-white);
}

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

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

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

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

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

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

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav {
    height: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

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

.nav-menu li {
    margin: 0;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    transition: all var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Main Content */
main {
    margin-top: var(--header-height);
}

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

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

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

.section-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

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

.hero-content {
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #16213e 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.philosophy-content {
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.service-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
}

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

.service-card.featured {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--color-white);
}

.service-card.featured .service-link {
    color: var(--color-primary);
}

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

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

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

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

.service-link {
    font-weight: 600;
    color: var(--color-primary);
}

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

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-200);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

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

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-gray-50);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-card blockquote {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

/* Brands Section */
.brands-section {
    background-color: var(--color-white);
}

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

.brand-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-category {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.brand-category h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.brand-category p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

.insight-card {
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.insight-icon svg {
    width: 48px;
    height: 48px;
}

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

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #16213e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Story Section */
.story-section {
    background-color: var(--color-white);
}

.story-content {
    margin-bottom: 40px;
}

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

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

.story-illustration {
    max-width: 100%;
    height: auto;
}

/* Milestones Section */
.milestones-section {
    background-color: var(--color-gray-50);
}

.milestones-timeline {
    margin-top: 40px;
}

.milestone {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-200);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

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

/* Team Section */
.team-section {
    background-color: var(--color-white);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-card {
    background: var(--color-gray-50);
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
}

.team-avatar {
    margin-bottom: 16px;
}

.team-avatar svg {
    width: 80px;
    height: 80px;
}

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

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

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

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

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

.value-block {
    padding: 24px;
    background: var(--color-white);
    border-radius: 12px;
}

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

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

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

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

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

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

.stat-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Approach Section */
.approach-section {
    background-color: var(--color-white);
}

.approach-content {
    margin-bottom: 40px;
}

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

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

.approach-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.approach-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.approach-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-secondary);
}

.approach-feature p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* Services Page */
.services-intro {
    background-color: var(--color-gray-50);
}

.services-intro-content {
    margin-bottom: 40px;
}

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

.services-intro-visual {
    display: flex;
    justify-content: center;
}

.services-intro-visual svg {
    max-width: 100%;
    height: auto;
}

.services-main {
    background-color: var(--color-white);
}

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

.service-detail {
    padding: 32px 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
}

.service-detail.alt {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-detail-icon svg {
    width: 64px;
    height: 64px;
}

.service-detail-title h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.service-feature span {
    font-size: 14px;
    color: var(--color-text);
}

/* Pricing Comparison */
.pricing-comparison {
    background-color: var(--color-gray-50);
}

.pricing-table-wrap {
    overflow-x: auto;
    margin-top: 32px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    min-width: 500px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.pricing-table th {
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
}

.pricing-table td.included {
    color: var(--color-primary);
    font-weight: 600;
}

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

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

.benefit-card {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
    text-align: center;
}

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

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

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

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

/* Contact Page */
.contact-main {
    background-color: var(--color-white);
}

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

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

.contact-card {
    padding: 28px 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
}

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

.contact-card-icon svg {
    width: 48px;
    height: 48px;
}

.contact-card h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.contact-card address {
    color: var(--color-text);
    line-height: 1.8;
}

.contact-link {
    font-weight: 600;
}

.hours-table {
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

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

.company-info-block,
.directions-block {
    margin-bottom: 32px;
}

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

.direction-option {
    margin-bottom: 24px;
}

.direction-option:last-child {
    margin-bottom: 0;
}

.direction-option h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 8px;
}

.direction-icon {
    width: 24px;
    height: 24px;
}

.direction-option p {
    color: var(--color-text-light);
    margin: 0;
    padding-left: 34px;
    font-size: 14px;
}

/* Company Details Section */
.company-details-section {
    background-color: var(--color-gray-50);
}

.company-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.company-detail {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: var(--color-white);
    border-radius: 8px;
}

.detail-label {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Response Info Section */
.response-info {
    background-color: var(--color-white);
}

.response-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.response-icon {
    width: 64px;
    height: 64px;
}

.response-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

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

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

.thank-you-icon svg {
    width: 120px;
    height: 120px;
}

.thank-you-content h1 {
    font-size: 40px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

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

.thank-you-details {
    text-align: left;
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.thank-you-details h2 {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
}

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

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

.next-step .step-icon svg {
    width: 48px;
    height: 48px;
}

.step-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

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

/* Meanwhile Section */
.meanwhile-section {
    background-color: var(--color-white);
}

.meanwhile-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.meanwhile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
}

.meanwhile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.meanwhile-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.meanwhile-card h3 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-text h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-text li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.legal-text address {
    background: var(--color-gray-50);
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

/* Cookies Table */
.cookies-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--color-gray-200);
    font-size: 14px;
}

.cookies-table th {
    background: var(--color-gray-50);
    font-weight: 600;
}

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

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

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

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

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

.footer h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--color-white);
}

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

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

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

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

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

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

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

.cookie-actions .btn {
    padding: 12px 20px;
    font-size: 14px;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1002;
}

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

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

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

.cookie-modal-header h3 {
    font-size: 20px;
    margin: 0;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
}

.cookie-modal-close svg {
    width: 20px;
    height: 20px;
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.cookie-option-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-secondary);
}

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

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

.cookie-toggle input {
    display: none;
}

.cookie-toggle label {
    display: block;
    width: 48px;
    height: 26px;
    background: var(--color-gray-200);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.cookie-toggle label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform var(--transition);
}

.cookie-toggle input:checked + label {
    background: var(--color-primary);
}

.cookie-toggle input:checked + label::after {
    transform: translateX(22px);
}

.cookie-toggle.disabled label {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.cookie-modal-footer .btn {
    padding: 12px 20px;
    font-size: 14px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    h2 {
        font-size: 36px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }

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

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

    /* Hero */
    .hero {
        padding: 100px 0;
    }

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

    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }

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

    .hero-visual {
        flex: 1;
    }

    /* Philosophy */
    .philosophy-grid {
        display: flex;
        gap: 60px;
    }

    .philosophy-content {
        flex: 1;
        margin-bottom: 0;
    }

    .philosophy-values {
        flex: 1;
    }

    /* Services */
    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 280px;
    }

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 280px;
    }

    /* Brand Categories */
    .brand-categories {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .brand-category {
        flex: 1 1 calc(50% - 12px);
    }

    /* Insights */
    .insights-grid {
        flex-direction: row;
    }

    .insight-card {
        flex: 1;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .story-content {
        flex: 1;
        margin-bottom: 0;
    }

    .story-visual {
        flex: 1;
    }

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

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

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

    .value-block {
        flex: 1 1 calc(50% - 12px);
    }

    /* Stats */
    .stats-grid {
        gap: 60px;
    }

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

    .approach-content {
        flex: 1;
        margin-bottom: 0;
    }

    .approach-features {
        flex: 1;
    }

    /* Services Intro */
    .services-intro-grid {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .services-intro-content {
        flex: 1;
        margin-bottom: 0;
    }

    .services-intro-visual {
        flex: 1;
    }

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

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

    /* Contact */
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1;
    }

    /* Company Details */
    .company-detail {
        flex: 1 1 calc(50% - 10px);
    }

    /* Response Info */
    .response-content {
        flex-direction: row;
        text-align: left;
    }

    /* Thank You */
    .thank-you-actions {
        flex-direction: row;
    }

    /* Meanwhile */
    .meanwhile-grid {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    /* Footer */
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        max-width: 300px;
    }

    /* Cookie Banner */
    .cookie-content {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .cookie-content p {
        margin-bottom: 0;
        flex: 1;
    }

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

    /* Cookie Modal */
    .cookie-modal-footer {
        flex-direction: row;
        justify-content: flex-end;
    }
}

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

    /* Team */
    .team-card {
        flex: 1 1 calc(25% - 18px);
    }

    /* Values */
    .value-block {
        flex: 1 1 calc(25% - 18px);
    }

    /* Benefits */
    .benefit-card {
        flex: 1 1 calc(25% - 18px);
    }

    /* Company Details */
    .company-detail {
        flex: 1 1 calc(33.333% - 14px);
    }
}