.header-title {
    margin-top: 30px;
}

.header-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1F2B5D;
}

.collapse {
    display: block;
}

.collapse .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collapsible {
    background-color: #ECF0F9;
    cursor: pointer;
    padding: 25px 30px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-top: 25px;
    font-size: 24px;
}

.collapsible h4 {
    color: #1F2B5D;
    font-size: 30px;
}

.active,
.collapsible:hover {
    background-color: #1F2B5D;
    color: white;
}

.active h4,
.collapsible:hover h4 {
    color: white;
}

.content {
    padding: 0 18px;
    overflow: hidden;
    background-color: #1F2B5D;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0px 30px 25px;
}

.content p {
    color: white;
    font-size: 22px;
}