* {
    margin: 0px;
    max-width: 100vw;
}

html {
    overflow-y: scroll;
}

#header * {
    background-color: transparent;
    text-align: center;
}

#header {
    display: flex;
    background-color: lightblue;
    padding: 1vw;
    justify-content: space-between;
    align-items: center;
}

#header img {
    height: 4.5vw;
    flex-grow: 1;
    display: block;
}

#header p {
    font-size: 1.8vw;
    font-family: "Montserrat", sans-serif;
    color: #223089;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

#flexnav {
    display: flex;
    width: 70vw;
    align-items: stretch;
    text-align: center;
    flex-wrap: wrap;
    gap: 1vw;
    margin-left: 2vw;
    margin-right: 2vw;
}

#flexnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #223089;
    padding: 1vw 0;
    color: white;
    flex: 1 1 150px;
    font-size: 2vw;
    font-family: "Montserrat", sans-serif;
    flex-grow: 1;
}

h1 {
    font-family: "Montserrat", sans-serif;
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

#footer {
    display: flex;
    background-color: lightblue;
    padding: 1%;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
}

#main-image {
    width: 90%;
    margin: 5%;
}

#our-services {
    display: flex;
    margin: 4.5%;
    flex-wrap: wrap;
}

.service-card {
    margin: 0.5vw;
    width: 28%;
    background-color: #223089;
    padding: 2%;
    display: flex;
    flex-direction: column;
    flex-basis: 300px;
    flex-grow: 1;
}

.service-card h1 {
    text-align: center;
    color: #FFC108;
    font-size: 4vw;
    margin-bottom: 1vw;
}

.service-card p {
    font-size: 2vw;
    color: white;
    text-align: justify;
}

.service-card-button {
    background-color: #FFC108;
    height: 10%;
    color: #223089;
    font-size: 3vw;
    font-family: "Montserrat", sans-serif;
    margin-top: 2%;
    text-align: center;
    padding: 2%;
    margin-top: 20px;
    text-decoration: none;
    align-content: center;
}

/* This is for the navbar */
#navbar-frame {
    width: 100%;       /* Fill the width of the screen */
    border: none;      /* Remove the default border */
    height: 150px;     /* Adjust this to fit your header's height */
    overflow: hidden;  /* Prevent scrollbars inside the iframe */
}