
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    max-width: 800px;
    width: 100%;
}
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.logo img {
    max-width: 200px;
}
.content {
    text-align: left;
}
.intro {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}
.description {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}
.description li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.soon {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
}
