body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px; /* Adjusted max-width */
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    color: #444;
    margin-bottom: 30px;
}

.data-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px; /* Keep margin for spacing */
}

.data-card {
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px; /* Adjusted min-width */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.data-card h2 {
    margin-top: 0;
    color: #555;
}

.data-card p {
    font-size: 2.5em; /* Made text slightly larger */
    font-weight: 700;
    color: #007BFF;
    margin: 0;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .data-container {
        flex-direction: column;
    }
}