 body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #f0f0f0;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        width: 700px;
        height: 500px;
        margin: 10px;
        padding: 40px 20px 20px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-container {
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .logo {
        width: 250px;
        height: auto;
    }

    h1 {
        font-weight: bold;
        margin: 40px 0 0 0;
        font-size: 25px;
        text-align: left;
    }

    h2 {
        font-style: italic;
        font-weight: normal;
	    font-size: 15px;
        margin: 0 0 40px 0;
        text-align: left;
    }


    p {
        font-style: italic;
        font-weight: normal;
	    font-size: 15px;
        margin: 0 0 40px 0;
        text-align: left;
    }

    ul {
        padding: 0;
        list-style-type: disc;
        list-style-position: inside;
        width: 100%;
        margin-top: 0px;
    }

    li {
        margin-bottom: 0px;
        text-align: left;
        padding-left: 1em;
	font-size: 14px;
    }