body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    background: #2624af;
    color: white;
    padding: 15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(#3634cf, #788eec);
    color: white;
}

.hero button {
    padding: 10px 20px;
    margin-top: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.card {
    background: #3129a0;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.flex {
    display: flex;
    gap: 15px;
}

.flex div {
    flex: 1;
    background: #ddd;
    padding: 20px;
}

.container {
    padding: 20px;
}

@media(max-width:600px) {
    .flex {
        flex-direction: column;
    }
}

@media print {

    nav,
    button {
        display: none;
    }
}

#cta{
    background-color: #2624af;
    border-radius: 5px;
 color: white;  
    border-color: #2624af;
}