*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Inter",sans-serif;
    background:linear-gradient(135deg,#eef2ff,#f8fafc);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.container{
    width:100%;
    max-width:900px;
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

h1{
    text-align:center;
    font-size:38px;
    margin-bottom:30px;
}

label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

input[type="date"]{
    width:100%;
    padding:16px;
    border:2px solid #ddd;
    border-radius:14px;
    font-size:16px;
    margin-bottom:25px;
}

input[type="date"]:focus{
    outline:none;
    border-color:#4f46e5;
}

button{
    width:100%;
    border:none;
    border-radius:14px;
    background:#4f46e5;
    color:white;
    padding:16px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    margin-bottom:30px;
}

button:hover{
    transform:translateY(-2px);
}

.results{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:18px;
}

.card{
    background:#f8fafc;
    border-radius:16px;
    padding:22px;
    text-align:center;
}

.card h2{
    color:#4f46e5;
    font-size:28px;
    margin-bottom:8px;
    word-break:break-word;
}

.card p{
    color:#555;
    font-weight:600;
}
.backButton{
    display:inline-block;
    margin-bottom:25px;
    color:#4f46e5;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.backButton:hover{
    opacity:.7;
}

.description{
    color:#666;
    font-size:18px;
    margin:20px 0 35px;
    line-height:1.7;
}

.info{
    margin-top:60px;
    padding-top:40px;
    border-top:2px solid #eee;
}

.info h2{
    margin:35px 0 15px;
    color:#4f46e5;
    font-size:28px;
}

.info p{
    color:#555;
    line-height:1.8;
    font-size:17px;
}