@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0096ff, #0042ff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Quicksand', sans-serif;
}

.container {
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    max-width: 700px;
    text-align: left;
    line-height: 1.7;
    font-size: 18px;
}

.logo img {
    display: block;
    margin: 0 auto 20px;
    max-width: 600px;
}

h1 {
    text-align: center;
    color: #555555;
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    color: #555555;
}

.signature {
    margin-top: 30px;
    text-align: right;
    color: #555555;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    .logo img {
        max-width: 240px;
    }
}
