* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/*friend suggestion*/
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

nav a {
    text-decoration: none;
    color: #666;
    margin-left: 25px;
    font-size: 0.9rem;
}

.bg-light {
    background-color: #f4f7f6;
    padding: 80px 0;
}
/* Service Section */

.service>div:first-child {
    background-color: var(--background);
    padding: 2vw;
    margin-top: 7vh;
}

.service>div>h6 {
    font-size: 12px;
    color: var(--highlight);

}

.headings {
    display: flex;
    justify-content: space-between;
}

.headings>h1 {
    width: 40vw;
    background-color: #DAE2FF;
    padding: 30px 50px;

}

.headings>p {
    width: 40vw;
    font-size: 19px;
    padding: 20px;
    display: flex;
    align-self: center;
}

.boxes {
    padding: 10px;
    background-color: var(--box-background);
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.box {
    background-color: white;
    width: 25vw;
    height: 25vw;
    border-radius: 20px;
    margin: 20px;
    padding: 10px;
}

box>div {
    color: rgb(51, 51, 51);
    background-color: white;
}

.box>h3 {
    margin: 1vh 0;
    background-color: white;
}

.box>p {
    margin: 1vh 0;
    background-color: white;
}

.collabs {
    padding: 8vw;

}

.collabs>p {
    color: var(--highlight);
    font-size: 16px;
    text-align: center;
}

.collabs>h2 {
    margin: 5vw;
    font-size: 26px;
    text-align: center;
}

.collab-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.elevate {
    background-color: #c1c4cc;
    padding: 8vw;

}

.elevate h3 {
    background-color: #c1c4cc;
    padding: 20px;
}

.elevate p {
    background-color: #c1c4cc;
    padding: 20px;
}

.elevate button {
    background-color: var(--highlight);
    padding: 25px 20px;

    border-radius: 7px;
    border: none;
    margin: 20px;
}

/* Footer */


footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 1vw;
    gap: 7vw;
}

footer>h3 {
    font-size: 22px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-links {
    text-decoration: none;
    color: rgb(77, 77, 77);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0 10px;
    font-size: 14px;
}