/* Styling the whole page */
body {
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Styling the main heading */
h1 {
    color: #2c3e50;
    text-align: center;
    border-bottom: 2px solid #2c3e50;
}

/* Styling the company name using a class */
.company-label {
    color: white;
    background-color: #3498db;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}