body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

.logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 2rem;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.maintenance-image,
.image {
    max-width: 700px;
    width: 100%;
    margin-bottom: 2rem;
}
.maintenance-image img,
.image img {
    width: 100%;
    height: auto;
    display: block;
}

.messages {
    width: 90%;
    max-width: 800px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    padding: 1rem;
    margin: 0 auto;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.issue-icon {
    color: #ff9800;
    margin-right: 0.5rem;
}

@media (max-width: 900px) {
    .title { font-size: 1.5rem; }
    .subtitle { font-size: 1rem; }
    .messages { max-height: 220px; }
}

@media (max-width: 480px) {
    .container { height: auto; padding-top: 3rem; padding-bottom: 3rem; }
    .logo { max-width: 260px; }
    .maintenance-image { max-width: 320px; }
    .messages { width: 95%; }
}