
/* style.css */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
}

.azure-logo {
    width: 250px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 20px;
}

.content {
    text-align: left;
    max-width: 550px;
}

.content h1 {
    font-size: 24px;
    font-weight: 600;
}

.content p, .content ul {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.content ul {
    padding-left: 20px;
}

.content a.learn-more {
    color: #0078D4;
    text-decoration: none;
}

.image-container {
    position: absolute;
    margin: 20px 0;
    left: 520px;
    top: 158px;
    align-items: right;
}

.image-container img {
    width: 430px;
    height: 404px;
}

.next-steps {
    text-align: left;
    max-width: 550px;
    margin-top: 20px;
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 600;
}

.next-steps .step p {
    flex-grow: 1;
    font-size: 16px;
    text-align: left;
    color: #000000;
}

.next-steps .btn {
    background-color: #0078D4;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
}

.next-steps .btn:hover {
    background-color: #005ba1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 0px;
    padding: 8px;
    text-align: left;
}