* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav {
    height: 80px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0rem 2rem;
}

.logo-image {
    height: 50px; /* Adjust as needed */
    width: auto;
    margin-right: 15px;
}

.logo-text {
    color: #1f2ac0;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
}

nav a {
    font-size: large;
    text-decoration: none;
    color: #c6c7cc;
    padding: 1.5rem;
}

.hero {
    background: #ebebf5;
}

.hero-container { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px) / 2);
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: black;
    padding: 0rem 2rem;
}

.column-left h1 {
    margin-bottom: 1rem;
}

.column-left p {
    margin-bottom: 2rem;
    line-height: 1.5;
}

button {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color: #1f2ac0;
    background: #000;
    cursor: pointer;
    border-radius: 50px;
}

button:hover {
    background: #fff;
    color: #000;
}

.column-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;
}

.hero-image {
    width: 100%;
    height: 100%;
}

