.custom-toggle-button {
    padding:10px 50px!important;
    background:#001b2d;
    color:#fff;
    border-radius:100px;
    border: 2px solid #001b2d;
    margin-top:30px;
    display:inline-block;
}
.custom-toggle-button:hover {
    opacity:0.75;
}
.custom-accordion h3.custom-toggle-heading {
    font-size:23px;
    color:#444;
}
.custom-toggle {
    padding: 40px 70px 40px 0;
    transition: color 0.15sease;
    border-bottom:1px solid #eaeaea;
}
.custom-accordion {
    margin: 20px 0;
}

/* Each toggle panel */
.custom-accordion .custom-toggle {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

/* Toggle heading (using h3) */
.custom-accordion .custom-toggle-heading {
    margin: 0;
    font-size: 23px!important;
    cursor: pointer;
    position: relative;
    padding: 10px;
}

/* Toggle heading link styling */
.custom-accordion .custom-toggle-heading a {
    text-decoration: none;
    color: #333;
    display: block;
    padding-right: 40px;
}

/* Icon styling and position */
.custom-accordion .custom-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
}

/* Toggle content styling */
.custom-accordion .custom-toggle-content {
    padding: 25px 10px;
    background-color: #fff;
    display: none;
}

/* Text inside the toggle */
.custom-accordion .custom-toggle-text {
    margin: 0 0 10px;
}

