body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.text {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 700px;
}

.logo-header {
    background-color: #333; /* Adjust color to match your homepage */
    color: #fff;
    padding: 20px;
    display: flex; /* Use Flexbox to align logo and text */
    align-items: center; /* Vertically align items in the center */
    margin-bottom: 30px;
    border-radius: 5px 5px 0 0;
}

.logo {
    max-height: 80px; /* Adjust the maximum height of your logo */
    margin-right: 20px; /* Add some space between the logo and text */
}

.header-text h1 {
    margin-top: 0;
    font-size: 2em; /* Adjust size as needed */
}

.header-text p {
    font-size: 1.2em;
    color: #ddd; /* Slightly lighter text for the tagline */
    margin-top: 0.5em;
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

.text p:last-child {
    text-align: center;
    margin-top: 20px;
}

.text p:last-child a {
    color: #007bff;
    text-decoration: none;
}

.text p:last-child a:hover {
    text-decoration: underline;
}