* { box-sizing: border-box; margin: 0; padding: 0; font-family: sans-serif; }
body { background-color: #f4f7f6; color: #333; line-height: 1.6; }

.hero-section {
    background: linear-gradient(135deg, #ff6600, #a11d17);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}
.hero-section h1 { font-size: 2.5rem; margin-bottom: 10px; }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.company-card:hover {
    border-color: #f93804;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(249, 56, 4, 0.2);
}
.company-card h2 { font-size: 1.5rem; margin-bottom: 15px; }

.status { font-size: 0.9rem; color: #666; display: flex; align-items: center; justify-content: center; gap: 8px;}
.dot { width: 10px; height: 10px; background-color: #10b981; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px #10b981; }
