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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary, #4b5563);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 35px;
    width: auto;
    max-width: 120px;
    border-radius: 6px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary, #4b5563);
    font-weight: var(--font-weight-medium, 500);
    transition: color var(--transition-base, 0.2s ease);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-secondary, #4b5563);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-subtitle span {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
    text-align: left;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #4a5568;
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons - 使用设计系统，见 design-system.css */
/* 保留 .btn-large 作为向后兼容 */
.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg, 1.125rem);
    min-height: 52px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-header h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48bb78;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.ai-employees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-employee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.ai-employee:hover {
    transform: translateX(5px);
}

.employee-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.ai-doctor { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.ai-analyst { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.ai-manager { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.employee-info h4 {
    font-size: 1rem;
    color: #2d3748;
    margin: 0 0 0.2rem 0;
}

.employee-info p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Proposition */
.value-prop {
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.value-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

/* AI Showcase */
.ai-showcase {
    background: #f7fafc;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.showcase-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.showcase-item p {
    color: #718096;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.roi-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.roi-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.roi-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.roi-metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Customer Success */
.customer-success {
    background: white;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.story-info h4 {
    color: #2d3748;
    margin: 0 0 0.3rem 0;
}

.story-info p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

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

.story-content p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.metric-label {
    font-size: 0.8rem;
    color: #718096;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: #667eea;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 2rem 0 0.75rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-brand p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.footer-links a {
    font-size: 0.9rem;
    color: #f7fafc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.copyright-text {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.footer-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.footer-info-item i {
    color: #a0aec0;
    font-size: 0.85rem;
}

.footer-info-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-info-divider {
    color: #4a5568;
    margin: 0 0.2rem;
}

.icp-text {
    margin: 0;
    font-size: 0.8rem;
    color: #a0aec0;
    line-height: 1.4;
}

.icp-text a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-text a:hover {
    color: #e2e8f0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1rem;
    }
    
    .footer-copyright {
        gap: 0.5rem;
    }
    
    .footer-info-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-info-divider {
        display: none;
    }
    
    .copyright-text {
        font-size: 0.8rem;
    }
    
    .footer-info-item {
        font-size: 0.8rem;
    }
}

.footer-copyright a,
.footer-info a {
    color: #f7fafc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-copyright a:hover,
.footer-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo {
        height: 30px;
        max-width: 100px;
    }
    
    .footer-logo {
        height: 32px;
        max-width: 110px;
        margin-bottom: 0.4rem;
    }
    
    .footer-brand h3 {
        margin-bottom: 0.2rem;
        font-size: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-section h4 {
        margin-bottom: 0.4rem;
        font-size: 0.95rem;
    }
    
    .footer-links li {
        margin-bottom: 0.35rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cultural-dashboard {
        margin-top: 2rem;
    }
    
    .roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .roi-metrics {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .wuxing-departments-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .value-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .story-metrics {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.8;
    }
}

/* Founder Profile Specific Styles */
.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tech-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.education-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Additional responsive styles for founder section */
@media (max-width: 768px) {
    .founder-profile {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .founder-photo {
        margin-bottom: 2rem;
    }
    
    .founder-photo div[style*="width: 220px"] {
        width: 180px !important;
        height: 180px !important;
    }
    
    .education-grid > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr !important;
    }
    
    .innovations-grid {
        grid-template-columns: 1fr !important;
    }
    
    .founder-highlights {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .tech-tags {
        justify-content: center !important;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cultural Dashboard Styles */
.cultural-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.cultural-dashboard .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cultural-dashboard .dashboard-title {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.cultural-dashboard .dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.wuxing-departments {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.department-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.department-item:hover {
    transform: translateX(5px);
}

.department-item.wood {
    border-left: 4px solid #48bb78;
}

.department-item.fire {
    border-left: 4px solid #f56565;
}

.department-item.earth {
    border-left: 4px solid #d69e2e;
}

.department-item.metal {
    border-left: 4px solid #718096;
}

.department-item.water {
    border-left: 4px solid #4299e1;
}

.dept-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    flex-shrink: 0;
}

.dept-info {
    flex: 1;
    min-width: 0;
}

.dept-name {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.dept-status {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.2;
}

.dept-activity {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    padding: 0.2rem 0.6rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    flex-shrink: 0;
}

.seasonal-rhythm {
    margin-top: 1.5rem;
}

.seasonal-rhythm > div {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 10px;
}

.seasonal-rhythm .current-season {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.seasonal-rhythm .season-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.seasonal-rhythm .season-desc {
    font-size: 0.8rem;
    color: #718096;
}

/* Responsive adjustments for cultural dashboard */
@media (max-width: 768px) {
    .cultural-dashboard {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .department-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .dept-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .dept-name {
        font-size: 0.9rem;
    }
    
    .dept-status {
        font-size: 0.8rem;
    }
    
    .dept-activity {
        font-size: 0.8rem;
        padding: 0.1rem 0.5rem;
    }
} 