/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between elements */
}

.main-logo {
    width: 450px; /* Set Goodly Loan logo size */
    height: auto;
}

.coming-soon {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.curated {
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Space between text and logo */
}

.small-logo {
    width: 150px; /* Adjusted size */
    height: auto;
}
