body {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #FCF5EA;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

a {
    color: #000;
    text-decoration: none;
}

.logo {
    width: 15rem;
    margin-bottom: 1rem;
}

.description-container {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    padding-left: 60px;
    max-width: 500px;
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 650px) {
    .description-container {
        padding-left: 20px;
    }
}

.bar {
    width: 4px;
    height: 100%;
    background-color: #000;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.description-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6rem;
}

.btn {
    display: block;
    width: 15rem;
    margin: 0.6rem auto;
    padding: 0.8rem;
    font-size: 1rem;
    background-color: #0788e3;
    color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #075d9b;
}