/* MSME Company Page Styles */
.msme-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(4, 120, 87, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.msme-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.msme-header h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.msme-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.msme-header .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.msme-section {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.msme-section h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.msme-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.model-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.model-card {
    background: var(--background-color);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.model-card i {
    font-size: 2rem;
    margin-bottom: 12px;
}

.model-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.model-card p {
    font-size: 0.85rem;
}

.contact-cta {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    margin-bottom: 24px;
}

.contact-cta h3 {
    margin-bottom: 12px;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #065f46;
}
