body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff; /* Background blue color */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    background: white;
    font-size: 2em;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-transform: lowercase;
    font-style: italic;
    color: white;
}

.logo img {
    margin-right: 10px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    margin-left: 100px;
    padding-top: 80px;
}

.text-content {
    flex: 1;
    text-align: left;
    padding: 20px;
    color: rgb(28,69,233)
}

.text-content ol {
    color: #333;
}

.title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.description {
    color: #9a9a9a;
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.phone-container {
    flex: 1;
    display: flex;
    justify-content: start;
    margin-left: 100px;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: #000;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: white;
    border-radius: 20px;
}

.screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: left;
    color: #000;
    font-size: 1em;
}

.screen-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.screen-content button {
    width: 100%;
    padding: 10px;
    background: #1D1DB7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.app-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.app-links a {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack elements vertically */
        margin-left: 0;
        padding-top: 20px;
    }

    .text-content {
        text-align: center; /* Center-align text for better mobile layout */
        padding: 10px;
    }

    .phone-container {
        margin-left: 0;
        margin-top: 20px; /* Add spacing between text and phone images */
        justify-content: center; /* Center-align phone images */
    }

    .phone-frame {
        width: 100%; /* Adjust width for smaller screens */
        max-width: 300px; /* Prevent it from becoming too large */
        margin: 0 auto; /* Center-align */
    }

    .app-links {
        flex-direction: column;
        gap: 10px; /* Add spacing between app links */
    }
}
