header {
    padding-bottom: 7rem;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.land-section h1 {
    color: var(--mainColor2);
    opacity: 87%;
    font-weight: bold;
    line-height: 86.2px;
    position: relative;
    display: inline-block;
}

.land-section h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background-color: var(--highlightblue);
    right: 0;
    bottom: 30px;
    z-index: -1;
}

.land-section p {
    font-size: 22px;
    width: 90%;
    margin: 0 auto;
}

.join-us-btn {
    background-color: var(--mainColor2);
    border: 1px solid var(--mainColor2);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 0px 6px 2px #00000029;
    width: 165px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 0.5s;
}

.join-us-btn:hover {
    background-color: var(--mainColor3);
    border-color: var(--mainColor3);
    color: var(--mainColor2);
    transform: scale(0.9);
}

.border-custom {
    border: 2px solid var(--mainColor2);
    border-radius: 20px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto;
}

.card-title {
    font-size: 1.5rem;
    color: #343a40;
}

.card-text, .list-unstyled li {
    font-size: 1rem;
    color: #6c757d;
}

.contact a {
    color: var(--blue);
}

.fas {
    color: var(--mainColor2);
    opacity: 0.6;
}

@media (max-width: 475px) {
    .land-section h1::after {
        display: none;
    }

    .land-section h1 {
        line-height: 50px;
    }

    .land-section p {
        margin-top: 20px;
    }
}
