body {
    font-family: Arial, sans-serif;
    margin: 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

header {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px;
}

.logo {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

.company-info {
    font-size: 14px;
}

.content {
     padding: 20px;
}
