
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #f0f0f0;
    color: #333;
    padding-top: 20px;
    min-height: 100px;
    border-bottom: #77aaff 3px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img.logo {
    height: auto;  /* Set the logo height */
    width: 100px; /* Maintain aspect ratio */
}

.header-text {
    text-align: right;
    margin-left: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

section {
    padding: 20px 0;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
