body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
.logo {
    width: 500px; /* You can change this to whatever width you want */
    height: auto; /* This makes sure the image height scales proportionally */
}

header {
    background: #5075A9;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 2em;
    letter-spacing: 1px;
}

#hero {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#hero button {
    padding: 10px 20px;
    font-size: 1em;
    background: #5075A9;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

#hero button:hover {
    background: #40628A;
}

#features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.feature {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature h2 {
    margin-top: 0;
    color: #5075A9;
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #5075A9; /* MediumBlue */
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}