@charset "UTF-8";
/* CSS Document */
.homeMainContent {
    max-width: 90%;
    display: block;
    border-radius: 8% 1%;
	border-color: #FFA1E2;
	border-width: medium;
    color: #000000;
    background-color: #FFFFFF;
    margin-top: 335px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    padding-left: 30px;
    padding-right: 20px;
    padding-bottom: 36px;
    padding-top: 20px;
	z-index: 300; /* Lower than the header z-index */
}
.faqQuestions {
    font-family: "ice-cream-standard", sans-serif; /* Default font */
    text-align: left;
    font-weight: bold;
    font-size: 18pt;
    color: #D0458B;
    margin-left: 10px;
}
.faqQuestionsCentered {
    font-family: "ice-cream-standard", sans-serif; /* Default font */
    text-align: center;
    font-weight: bold;
    font-size: 18pt;
    color: #D0458B;
}
.faqAnswers {
    font-family: "montserrat", sans-serif; /* Default font */
    text-align: left;
    font-weight: normal;
    font-size: 11pt;
	line-height: 1.2em;
	margin-top: -.75em;
}
.itemsListedSpaceAfter {
    font-family: "montserrat", sans-serif; /* Default font */
    text-align: left;
    font-weight: normal;
    font-size: 11pt;
	line-height: 1.5em;
	margin-top: .75em;
}
ol.custom-counter {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

ol.custom-counter li {
    counter-increment: item;
    position: relative;
    padding-left: 40px; /* Space for the number circle */
    margin-bottom: 15px; /* Space between items */
}

ol.custom-counter li:before {
    content: counter(item);
    position: absolute;
    left: 0; /* Align with the left edge of the list item */
    width: 40px; /* Diameter of the circle */
    height: 40px; /* Diameter of the circle */
    line-height: 40px; /* Center the number vertically */
    text-align: center; /* Center the number horizontally */
    border-radius: 50%; /* Make it a circle */
    background-color: #BCBCBC; /* Pink background */
    color: white; /* White text color */
    font-family: "montserrat", sans-serif; /* Font styling, adjust as needed */
    font-size: 16px; /* Adjust size as needed, considering the circle size */
    font-weight: bold;
}