    .formContactDiv {
        display: flex;
        justify-content: center;
    }
    
    form {
        border: 1px solid;
        padding: 60px;
        box-shadow: 0 0 7px rgb(137, 238, 119);
        cursor: pointer;
    }
    
    input,
    textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        margin-top: 6px;
        margin-bottom: 16px;
        resize: vertical;
    }
    
    label {
        font-weight: bold;
        display: block;
    }
    
    .floatBlock {
        margin: 0 10px 0 0.5px;
        margin-top: -3px;
    }
    
    .options {
        border: none;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        break-before: always;
    }
    
    .liTitle {
        margin-bottom: -10px;
    }
    
    .submitButton {
        float: right;
        width: 10%;
        background-color: rgb(137, 238, 119);
        padding-right: 65px;
        cursor: pointer;
    }
    
    #hero2 {
        width: 100%;
        height: 330vh;
        background-color: rgba(17, 17, 17, 0.8);
        overflow: hidden;
        padding: 0;
    }
    
    #hero2 .carousel-item {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        transition: 0.3;
    }
    
    #hero2 .carousel-item::before {
        content: "";
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }
    
    #hero2 .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    
    #hero2 .carousel-content {
        text-align: center;
    }
    
    #hero2 h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
    }
    
    #hero2 h2 span {
        color: #74c92d;
    }
    
    #hero2 p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }
    
    #hero2 .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }
    
    #hero2 .carousel-inner .carousel-item,
    #hero2 .carousel-inner .active.carousel-item-start,
    #hero2 .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }
    
    #hero2 .carousel-inner .active,
    #hero2 .carousel-inner .carousel-item-next.carousel-item-start,
    #hero2 .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }
    
    #hero2 .carousel-inner .carousel-item-next,
    #hero2 .carousel-inner .carousel-item-prev,
    #hero2 .carousel-inner .active.carousel-item-start,
    #hero2 .carousel-inner .active.carousel-item-end {
        left: 0;
        transform: translate3d(0, 0, 0);
    }
    
    #hero2 .carousel-control-next-icon,
    #hero2 .carousel-control-prev-icon {
        background: none;
        font-size: 30px;
        line-height: 0;
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        transition: 0.3s;
        color: rgba(255, 255, 255, 0.5);
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #hero2 .carousel-control-next-icon:hover,
    #hero2 .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }
    
    #hero2 .carousel-indicators li {
        cursor: pointer;
        background: #fff;
        overflow: hidden;
        border: 0;
        width: 12px;
        height: 12px;
        border-radius: 50px;
        opacity: 0.6;
        transition: 0.3s;
    }
    
    #hero2 .carousel-indicators li.active {
        opacity: 1;
        background: #74c92d;
    }
    
    #hero2 .btn-get-started {
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 32px 12px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        text-transform: uppercase;
        border: 2px solid #74c92d;
        background: #74c92d;
    }
    
    #hero2 .btn-get-started:hover {
        background: #6ab82a;
        border-color: #6ab82a;
        color: #fff;
    }
    
    @media (max-width: 768px) {
        #hero2 h2 {
            font-size: 28px;
        }
    }
    
    @media (min-width: 1024px) {
        #hero2 p {
            width: 60%;
        }
        #hero2 .carousel-control-prev,
        #hero2 .carousel-control-next {
            width: 5%;
        }
    }
    
    .card-header2 {
        padding-top: 10px;
        color: #74c92d;
        text-align: center;
        margin-right: 200px;
    }
    
    ul label {
        margin-top: -2px;
        margin-right: 18px;
    }