body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 18px;
    color: #000000;
    margin: 0;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.cta-button {
    border: 2px solid #763895;
    color: #763895;
    padding: 10px 20px;
    border-radius: 10px;
    width: 220px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.cta-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.main-content {
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content h1 {
    font-size: 36px;
    color: #0D1128;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.main-content .cta-button {
    background-color: #763895;
    color: #ffffff;
    border: none;
}

.main-content .cta-button:hover {
    background-color: purple;
}
footer {
    /* background-color: #f8f9fa; */
    padding: 20px 50px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.footer-nav a:hover {
    color: salmon;
}
