:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-accent: #c9a55c;
    --color-accent-light: #e0c788;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-light: #f7f8fa;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 400;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.hero h1 {
    margin-bottom: 1.25rem;
}

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

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

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

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 6rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

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

    .hero p {
        margin-left: 0;
    }

    .hero-visual {
        flex: 1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

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

.section-header p {
    color: var(--color-text-light);
    margin-top: 0.75rem;
    font-size: 1.0625rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

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

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

.philosophy-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
}

.philosophy-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
}

.philosophy-card h3 {
    margin-bottom: 0.75rem;
}

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

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
    }

    .philosophy-card {
        flex: 1;
    }
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .stats-grid {
        flex-wrap: nowrap;
        justify-content: space-around;
    }
}

/* Services Preview */
.services-preview {
    background-color: var(--color-light);
}

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

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

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

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

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-accent);
    font-weight: 500;
}

.link-arrow:hover {
    color: var(--color-primary);
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }
}

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

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

.story-text h2 {
    margin-bottom: 1.25rem;
}

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

.story-text .btn {
    margin-top: 1rem;
}

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

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

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--color-light);
}

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

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

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

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

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

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

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

.values-header {
    margin-bottom: 2.5rem;
}

.values-header h2 {
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
}

.value-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.value-content h3 {
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 280px;
}

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

.step-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.process-connector {
    width: 2px;
    height: 40px;
    background-color: var(--color-accent);
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .process-step {
        flex: 1;
        max-width: none;
    }

    .process-connector {
        width: 40px;
        height: 2px;
        align-self: center;
    }
}

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

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

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

.faq-question span {
    flex: 1;
}

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

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

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
}

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

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

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
}

.page-hero-small {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
}

/* About Page */
.about-intro {
    background-color: var(--color-white);
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.intro-text h2 {
    margin-bottom: 1.25rem;
}

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

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

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

@media (min-width: 768px) {
    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        flex: 1;
    }

    .intro-visual {
        flex: 1;
    }
}

/* Timeline */
.timeline-section {
    background-color: var(--color-light);
}

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

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background-color: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker .year {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-primary);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 40px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
    }

    .timeline-item:nth-child(odd) .timeline-marker {
        right: -21px;
        left: auto;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        left: -21px;
    }
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

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

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

/* Philosophy Detail */
.philosophy-detail {
    background-color: var(--color-light);
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-text h2 {
    margin-bottom: 1.25rem;
}

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

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

.value-block {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.value-block h4 {
    color: var(--color-primary);
}

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

@media (min-width: 768px) {
    .philosophy-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .philosophy-text {
        flex: 1.2;
    }

    .philosophy-values {
        flex: 1;
    }
}

/* Craftsmanship Section */
.craftsmanship {
    background-color: var(--color-white);
}

.craft-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.craft-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
}

.craft-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.craft-icon svg {
    width: 100%;
    height: 100%;
}

.craft-item h3 {
    margin-bottom: 0.5rem;
}

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

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

.brands-text {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

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

.brands-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.brand-feature {
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
}

.feature-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

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

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

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

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.commitment-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.commitment-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

/* Services Page */
.services-intro {
    background-color: var(--color-white);
    padding-bottom: 2rem;
}

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

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

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

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.service-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    min-width: 140px;
}

.price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-primary);
}

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

.service-detail-visual svg {
    width: 100%;
    max-width: 280px;
}

@media (min-width: 768px) {
    .service-detail {
        flex-direction: row;
        align-items: center;
        padding: 3rem;
    }

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

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

/* Services List */
.services-list-section {
    background-color: var(--color-white);
}

.services-list-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-detailed-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card-detailed {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.service-card-header h3 {
    margin: 0;
}

.service-card-detailed p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.service-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

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

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

/* Process Detailed */
.process-detailed {
    background-color: var(--color-light);
}

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

.process-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-item:last-child {
    margin-bottom: 0;
}

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

.process-content {
    flex: 1;
}

.process-content h3 {
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.process-time {
    font-size: 0.8125rem;
    color: var(--color-accent);
    font-weight: 500;
}

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

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-header {
    display: flex;
    background-color: var(--color-primary);
}

.comparison-header .comparison-cell {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

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

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

.comparison-cell:first-child {
    font-weight: 500;
    color: var(--color-primary);
    background-color: var(--color-white);
}

.comparison-cell.highlight {
    background-color: rgba(201, 165, 92, 0.1);
    color: var(--color-primary);
    font-weight: 500;
}

.comparison-header .comparison-cell.highlight {
    background-color: var(--color-accent);
}

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

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

.benefit-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    margin: 0;
}

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

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

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

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

.info-block {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.info-note {
    font-size: 0.8125rem;
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.hours-table {
    margin-bottom: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
}

.hours-row span:first-child {
    color: var(--color-text);
}

.hours-row span:last-child {
    color: var(--color-text-light);
}

.contact-description h2 {
    margin-bottom: 1.25rem;
}

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

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-description {
        flex: 1.2;
    }
}

/* Directions Section */
.directions-section {
    background-color: var(--color-light);
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.direction-card {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
}

.direction-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.direction-icon svg {
    width: 100%;
    height: 100%;
}

.direction-card h3 {
    margin-bottom: 0.75rem;
}

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

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

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.company-info-card {
    flex: 1 1 calc(33.333% - 0.75rem);
    min-width: 200px;
    max-width: 250px;
    padding: 1.25rem;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.company-info-card h3 {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-info-card p {
    font-size: 0.9375rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Thank You Page */
.thank-you-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    background-color: var(--color-white);
}

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

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

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

.thank-you-content h1 {
    margin-bottom: 1.25rem;
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-info {
    background-color: var(--color-light);
    padding: 3rem 0;
}

.quick-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.quick-info-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.quick-info-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

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

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

.legal-intro {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-section li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-accent);
}

/* Cookie Table */
.cookie-table {
    margin: 1rem 0;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cookie-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.5rem;
}

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

.cookie-name {
    flex: 1;
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--color-primary);
    min-width: 120px;
}

.cookie-purpose {
    flex: 2;
    font-size: 0.875rem;
    color: var(--color-text-light);
    min-width: 200px;
}

.cookie-duration {
    flex: 1;
    font-size: 0.875rem;
    color: var(--color-text-light);
    min-width: 100px;
    text-align: right;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1 1 100%;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-flex;
}

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

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

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

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

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

.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    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;
}

@media (min-width: 768px) {
    .footer-brand {
        flex: 1 1 300px;
    }
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }
}

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

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

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

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

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    padding: 1rem;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.cookie-option p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    padding-left: 1.875rem;
}

.modal-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Utility Classes */
[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }

    main {
        padding-top: 0;
    }

    .page-hero {
        background: none;
        color: var(--color-text);
    }

    .page-hero h1,
    .page-hero p {
        color: var(--color-text);
    }
}
