main {
    padding: 1px 100px 50px 100px;
}

.title {
    text-align: center;
    color: #203A72;
    font-family: 'Montserrat';
}

.boxTitle {
    color: white;
    position: relative;
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 600;
    top: 10px;
    left: 30px;
    display: inline;
}

.box {
    display: block;
    width: 1000px;
    height: 50px;
    border: none;
    margin-top: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

#blue.box {
    background-color: #203A72;
}

#lightBlue.box {
    background-color: #203A72;
}

.dropdown {
    display: block;
    width: 1000px;
    height: 710px;
    border: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 10px;
    background-color: #EAEAEA;
}

#FundingBased.dropdown {
    height: 690px;
}

#businessLaw.dropdown {
    height: 530px;
}

#ActiveNetworkingTraining.dropdown {
    height: 650px;
}

#DigitalAssistance.dropdown {
    height: 650px;
}

#Workshops.dropdown {
    height: 250px;
}

#DiversityBased.dropdown {
    height: 550px;
}

.CuratedQuestions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.dropdownButton {
    position: relative;
    display: inline;
    left: 780px;
    top: 5px;
}

#FB.dropdownButton {
    left: 765px;
}

#BL.dropdownButton {
    left: 781px;
}

#ANT.dropdownButton {
    left: 623px;
}

#DA.dropdownButton {
    left: 737px;
}

#W.dropdownButton {
    left: 808px;
}

#DB.dropdownButton {
    left: 760px;
}

.dropdownButtonimg {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.6s;
}

.dropdown-content {
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
    max-height: 0px;
}

.dropdown-Selections {
    position: relative;
    left: 60px;
    top: 20px;
    margin-bottom: 30px;
}

.selectButton {
    margin-top: 12.5px;
    margin-left: 22px;
    margin-right: 5px;
}

.descriptionBox {
    position: relative;
    display: inline-block;
    width: 820px;
    top: 25px;
    left: 25px;
    background-color: white;
    border: 2px solid #203A72;
    border-radius: 10px;
}

#doubleLines.descriptionBox {
    height: 90px;
}

#tripleLines.descriptionBox {
    height: 110px;
}

#quadLines.descriptionBox {
    height: 130px;
}

.descriptionTitle {
    font-weight: 700;
    line-height: 2;
}

.descriptionText {
    position: relative;
    color: #203A72;
    font-family: 'Montserrat';
    font-weight: 600;
    top: 15px;
    left: 20px;
    line-height: 1.3;
}

.submitButton {
    display: inline-block;
    border: none;
    position: relative;
    color: white;
    padding: 6px 60px;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    margin: 15px 2px;
    cursor: pointer;
    border-radius: 7.5px;
    transition: background-color 0.3s, transform 0.2s;
    top: 40px;
    left: 747px;
    background-color: #203A72;
}

.submitButton:hover {
    background-color: #2C4E99;
}

.submitButton:active {
    background-color: #1A2E57;
    transform: scale(0.95);
}

.ResourceQuestions {
    margin-bottom: 25px;
}

.flipped {
    transform: rotateX(180deg);
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
.custom-checkbox .checkbox-mark {
    display: inline-block;
    width: 20px;
    /* Customize width */
    height: 20px;
    /* Customize height */
    border: 2px solid #203A72;
    /* Customize border color and width */
    border-radius: 2px;
    background-color: #fff;
    /* Customize background color */
    vertical-align: middle;
    cursor: pointer;
}

/* Add a checkmark for checked state */
.custom-checkbox input[type="checkbox"]:checked+.checkbox-mark {
    background-color: #007bff;
    /* Customize checkmark background color */
    border-color: #007bff;
    /* Customize border color when checked */
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-mark::after {
    content: '';
    display: block;
    width: 6px;
    /* Customize checkmark width */
    height: 10px;
    /* Customize checkmark height */
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: relative;
    top: 2px;
    left: 6px;
}

#doubleLines.custom-checkbox {
    display: inline-block;
    position: relative;
    top: 25px;
}

#tripleLines.custom-checkbox {
    display: inline-block;
    position: relative;
    top: 13px;
}